	var jsReady = false;
	var flashHeight = "800px";
	function movepage()
	{
	   //	alert(jsReady);
		if(screen.width<1440){	
		window.moveTo(0, 0);
		window.resizeTo(screen.width, screen.height);
		}else{
		window.moveTo((screen.width-1440)/2, (screen.height-1024)/2);
		window.resizeTo(1440, 1024);
		
		}
		top.window.focus();
	}
	     function isReady() {
     	 //alert(jsReady);
         return jsReady;
     }


	function doPopUp(quale) {
		//alert (quale);
		mywidth = 550;
		myheight = 600;
    	myleft = (screen.width - mywidth) / 2;
		mytop = (screen.height - myheight) / 2;
		window.open(quale,'Store','width='+mywidth+',height='+myheight+',scrollbars=1,resizable=0,menubar=0,toolbar=0,status=0,location=0,directories=0,left='+myleft+',top='+mytop);
	}

     function pageInit() {
     	
         jsReady = true;

     }
     
     function resizeFlash(){
     
     	if(screen.height > 800){
     		movepage();
     	}
     }

