function Abrir(destino,alto,ancho,ventana) 
{
	var jumpToHere;
	var winOptions;
	var popUpWindow; 
	jumpToHere = destino
	winOptions = "top=100, left=100, width=" + ancho + ", height=" + alto;
 	popUpWindow = open(jumpToHere, ventana, winOptions);
}