/*
No Click and Valid Flash Embedder
*/
function ShowSWF(Movie,Width,Height,BGColor,BGAlpha){
        document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="'+Width+'" height="'+Height+'" id="flashfile" align="middle"><param name="wmode" value="'+BGAlpha+'" /><param name="allowScriptAccess" value="sameDomain" /><param name="movie" value="'+Movie+'" /><param name="menu" value="false" /><param name="quality" value="high" /><param name="bgcolor" value="'+BGColor+'" /><embed src="'+Movie+'" menu="false" quality="high" bgcolor="'+BGColor+'" width="'+Width+'" height="'+Height+'" name="flashfile" align="middle" wmode="'+BGAlpha+'" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /></object>');
}

function ShowSWF6(Movie,Width,Height,BGColor,BGAlpha){
        document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="'+Width+'" height="'+Height+'" id="flashfile" align="middle"><param name="allowScriptAccess" value="sameDomain" /><param name="movie" value="'+Movie+'" /><param name="menu" value="false" /><param name="quality" value="high" /><param name="bgcolor" value="'+BGColor+'" /><embed src="'+Movie+'" menu="false" quality="high" bgcolor="'+BGColor+'" width="'+Width+'" height="'+Height+'" name="flashfile" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /></object>');
}
/*
End of No Click and Valid Flash Embedder
*/
/*
Screen Resolution Script
*/
function getres(){
var reswidth=screen.width;
var resheight=screen.height;
var rescolor=screen.colorDepth;
var sratio=reswidth/resheight;
var imgwidth;
var imgheight;
var altext="";
if(sratio==1.3333333333333333){
	imgwidth=510;
	altext="Fullscreen Ratio";
} else {
	imgwidth=610;
	altext="Widescreen Ratio";
}
document.getElementById("screenwidth").innerHTML=reswidth+" ";
document.getElementById("screenheight").innerHTML=resheight+" ";
document.getElementById("screencolor").innerHTML=rescolor+" ";
document.getElementById("screenresolution").style.width=imgwidth+"px";
document.getElementById("screenresolution").innerHTML='<img src="screen.php?swidth='+reswidth+'&sheight='+resheight+'&scolor='+rescolor+'" width="'+imgwidth+'" height="385" alt="'+altext+'" title="'+altext+'" />';
return true;
}
/*
End of Screen Resolution Script
*/
