function Abrir_Ventana(theURL,w,h) 
{ 

var windowprops ="top=0,left=0,toolbar=no,location=no,status=no, menubar=no,scrollbars=yes, resizable=no,width=" + w + ",height=" + h;

window.open(theURL,"",windowprops); 
} 

function abrir(dir)
{
	window.opener.location="redir.asp?destino="+dir;
	window.close();
}

function abrirL(dir)
{
	window.opener.location=dir;
	window.close();
}

