// Name    : general.js                                                        //
// Date    : 16th December 2002                                                    //
// Author  : Antony Tennant                                                    //
// Purpose : contain generic function for www.casadelsole.co.uk          //
// Copyright www.casadelsole.co.uk

function openWindow(strURL)
{
      window.open(strURL, "casadelsole", "resizable=0,status=0,toolbar=0,directories=0,location=0,menubar=0,scrollbars=1,width=760,height=520,top=10,left=20").focus();
}

function selectedPage()
{
	var objLink;
	for (i=0;i<arguments.length;i++)
	{
		(objLink = document.getElementById(arguments[i])) && (objLink.style.color = "996633") && (objLink.style.fontWeight= "bold");
	}
}

function writeFlash(strSource,strWidth,strHeight)
{
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" width="' + strWidth + '" height="' + strHeight +'">'
	+ '<param name="movie" value="/flash/' + strSource + '">'
     +'<param name="quality" value="high">'
      +'<embed src="/flash/' + strSource + '" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="' + strWidth + '" height="' + strHeight +'"></embed></object>');
}
