// JS Document
<!--
function getScreenRes() {
	
	if ((screen.width>=1024) && (screen.height>=768))
	{
	 window.location="highres.html";
	 
	}
	else
	{
	 window.location="lowres.html";
	}
	//document.write("Clip_width="&screen.width&"pageID="&"1")
}


function fixScreenRes() {
	
	if ((screen.width>1024) && (screen.height>768))
	{
	 document.write("<tr><td style='height:320px;'>&nbsp;</td></tr>")
	 //alert(screen.width)
	}
}

function getScreenRes() {
	
	if ((screen.width>1024) && (screen.height>768))
	{
	 document.write("<table class='fixHeight'><tr><td style='height:430px;' class='fixHeight'>")
	 //alert(screen.width)
	}
}

function Close_getScreenRes() {
	if ((screen.width>1024) && (screen.height>768))
	{
	 document.write("</td></tr></table>")
	 }
}


function EmbedFlashBar () {
	
	embedString = "<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' "
	embedString += "codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0 " 
	embedString += "width='100%' height='270'>"
    embedString += "<param name='movie' value='Top.swf'>"
    embedString += "<param name='quality' value='high'>"
	embedString += "<param name='flashVars' value='Clip_width='" & screen.width & "pageID=1' />"
    embedString += "<embed src='Top.swf' scale='noscale' quality='high' " 
	embedString += "pluginspage='http://www.macromedia.com/go/getflashplayer' "
	embedString += "type='application/x-shockwave-flash' width='100%' height='270' "
	embedString += "wmode='transparent' flashVars='Clip_width='" & screen.width & "pageID=1'></embed></object>"
	document.write(embedString)
}
//-->