		// 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;
}
