		// window.status="anymessage";
		// or use
		window.status=document.title;








		function checkwindow(xres,yres) {	
			var theWidth;
			var theHeight;  
			if (window.innerWidth) {
				theWidth=window.innerWidth;
			} else if (document.documentElement && document.documentElement.clientWidth) {
				theWidth=document.documentElement.clientWidth;
			} else if (document.body) {
				theWidth=document.body.clientWidth;
			}

			if (window.innerHeight) {
				theHeight=window.innerHeight;
			} else if (document.documentElement && document.documentElement.clientHeight) {
				theHeight=document.documentElement.clientHeight;
			} else if (document.body) {
				theHeight=document.body.clientHeight;
			}

			if ((theWidth<xres) || (theHeight<yres)) {
				self.resizeTo(xres,yres);
			}	

			//alert(theWidth);
                        //alert(theHeight);
			
		}

	
function turnon(objectID) {
	var object=document.getElementById(objectID); 
	object.style.display='block'; 
	return;
}

function fixflash() {
			var theWidth;
			var theHeight;  
			var leftpos;
			if (window.innerWidth) {
				theWidth=window.innerWidth;
			} else if (document.documentElement && document.documentElement.clientWidth) {
				theWidth=document.documentElement.clientWidth;
			} else if (document.body) {
				theWidth=document.body.clientWidth;
			}

			if (window.innerHeight) {
				theHeight=window.innerHeight;
			} else if (document.documentElement && document.documentElement.clientHeight) {
				theHeight=document.documentElement.clientHeight;
			} else if (document.body) {
				theHeight=document.body.clientHeight;
			}

			leftpos=Math.abs(theWidth-1600)/2;
			alert(leftpos);
			document.write('<div style="margin-top: 0px; overflow: hidden; left:-'.leftpos.'px;">');

	


}