//Sets broswer to be; 1 - Netscape 4 or less, 2 - IE 4 or less, 3 - IE 5+, 4 - DOM compliant (Netscape 6), 5 - Other
var browser; //Holds the browser type
if (document.layers)
  browser = 1; 
else if (document.all && !document.getElementById)
  browser = 2;
else if (document.all)
  browser = 3;
else if (document.getElementById)
  browser = 4;
else
  browser = 5;

//Sets platform to be; 1 - Windows, 2 - Mac
var platform; //Holds the operating system type
if (navigator.platform == "Win32")
  platform = 1;
else
  platform = 2;

//Generic popup function   
function openPopup(urllink,popName,h,w,scroll)
{
  dummy=window.open(urllink,popName,"toolbar=0,status=no,menuBar=0,scrollbars="+scroll+",resizable=no,width=" + w + ",height=" + h + ",left=174,top=153");
}



//Live Link popup function 
function livelink(room) {
  var dt,ct; dt=new Date(); ct=dt.getTime();
wh=window.open("http://www.englishluxury.co.uk/livelink/cgi-bin/bslivecw.pl?room="+escape(room)+"&req=0&lng=English&tid="+ct,"LIVE"+ct,"height=397,width=337,left=80,top=80")
//wh=window.open("http://www.englishluxury.co.uk/livelink/cgi-bin/bslivecw.pl?req=0&lng=English&tid="+ct,"LIVE"+ct,"height=520,width=380,left=80,top=80");
}


function hideForm()
		{
		//document.getElementById('selecthide').style.display="none"
		document.getElementById('selectflash').style.display="block"
		document.click.GotoFrame(0);
		document.click.Play(); 
		}

function showForm()
		{
		document.getElementById('selectflash').style.display="none"
		//document.getElementById('selecthide').style.display="block"
		}	
		
		