// ActionScript Document MyWin= null; var winName="titulo" function Ampliar(theURL,w,h){ var windowprops ="top=0,left=0,toolbar=no,location=no,status=no, menubar=no,scrollbars=yes, resizable=yes,width=" + w + ",height=" + h; if(!MyWin){MyWin= window.open(theURL,winName,windowprops);} else{ MyWin.close();MyWin=null; MyWin= window.open(theURL,winName,windowprops) } } function Non(){ if(MyWin){MyWin.close();MyWin=null} else{MyWin=null} }