// JavaScript Document
function checkWindow(){
	if (parseInt(navigator.appVersion)>3) {
	 if (navigator.appName=="Netscape") {
	  w = window.innerWidth-16;
	  h = window.innerHeight-16;
	 }
	 if (navigator.appName.indexOf("Microsoft")!=-1) {
	  w = document.body.offsetWidth-20;
	  h = document.body.offsetHeight-20;
	 }
	}
	

	
	//w = document.body.offsetWidth;
	//h = document.body.offsetHeight
	
	var info = document.getElementById("info");
	var doc = document.getElementById("flashcontent");

	if(w < 900){
		info.style.display = 'block';
		info.style.width = w+'px';
		info.style.height = h+'px';
		doc.style.display = 'none';		
	}else{
		if(h < 560){
			info.style.display = 'block';
			info.style.width = w+'px';
			info.style.height = h+'px';
			doc.style.display = 'none';	
		}else{
			doc.style.display = 'block';
			info.style.display = 'none';
		}
	}
	//alert(w +'x'+h );

}
