var newWin=null;

function openWindow(width,height,url)
{
	if ( newWin != null )
         { newWin.close();
         }
 newWin=window.open(url,'BeatiLoro' , 'HEIGHT='+height+',WIDTH='+width+',TOP=0,LEFT=0,TITLEBAR=no,SCROLLBARS=no,ALWAYSRAISED');
 return true;
}