function ridimensionaDivGiochi(){
   var myBody=document.getElementById('tabellaDimensioneGioco');
   if(myBody!=null){
	   var w_newWidth,w_newHeight;
	   var w_maxWidth=1600, w_maxHeight=1200;
	
	   var netscapeScrollWidth=0;
	   w_newWidth=myBody.clientWidth-15; 
	   w_newHeight=myBody.clientHeight-15; 
	
	
	   var appletDiv = document.getElementById('appletDiv');
	   if (appletDiv != null) {
	       appletDiv.style.width  = w_newWidth  + "px";
	       appletDiv.style.height = w_newWidth + "px";
	
	       window.scroll(0,0);
	   }
   }
}
//window.onResize = resize;
//window.onLoad   = resize;