<!--

window.onbeforeunload=close_popUp
w=window;

function close_popUp(){ if(w.ventana){w.ventana.close();w.ventana=null}  }

function popup_win(URL,WinName,Features) {
	Features=Features.toLowerCase()			
	if(w.ventana){w.ventana.close();w.ventana=null};  w.ventana=w.open(URL,WinName,Features);
	FeaturesArray=Features.split(",")
	for(i=0;i<FeaturesArray.length;i++){
		if(FeaturesArray[i].indexOf("width=")>-1){VentanaWidth=FeaturesArray[i].substring(6,FeaturesArray[i].length) };
		if(FeaturesArray[i].indexOf("height=")>-1){VentanaHeight=FeaturesArray[i].substring(7,FeaturesArray[i].length) };		
	}
	var ScreenWidth=screen.width-10; var ScreenHeight=screen.height-70;
	w.ventana.moveTo((ScreenWidth/2)-(VentanaWidth/2),(ScreenHeight/2)-(VentanaHeight/2))	
	

}

if(window.name!="" && window.opener){
window.opener.document.location.href=document.location.href
self.close()
}


-->