// JavaScript Document


<!--
defaultStatus = ' Propuesta realitzada per: Imaginalia'
function vn() 
{ 
var url = 'base.html'
var width = screen.availWidth; 
var height = screen.availHeight; 
var specs = "fullscreen=no,left=0,top=0,screenX=0,screenY=0"; 
specs += ",width=" + width + ",height=" + height; 
specs += ",scrollbars=no,toolbar=no,menubar=no"; 
specs += ",status=no,location=no"; 
specs += ",directories=no,resizable=no,alwaysRaised"; 
//specs += ",innerHeight=" + height + ",innerWidth=" + width; 
var Popup = window.open(url, 'remote2', specs); 
Popup.resizeTo(width,height);

}


