var win = null;

function popup(page) {
        win = window.open(page, "popUpWindow", "width=490,innerwidth=490,height=500,innerheight=500,toolbar=no,titlebar=no,menubar=no,location=no,scrollbars=yes,resizable=yes");
}
function OpenWin(theURL,winName,width,height) { 
	if(window.screen){
		per_ancho=(width/800)*100;//porcentaje screen-ancho
		per_alto=(height/width)*100;//porcentaje de ancho-alto
		win_ancho=(screen.width*per_ancho)/100;//ancho de la ventana
		win_alto=(win_ancho*per_alto)/100;//alto de la ventana
		x=(screen.width-win_ancho)/2;//centra x
		y=(screen.height-win_alto)/2;//centra y
	}else{// si el buscador es 4-- queda todo igual :(
		x=0;
		y=0;
		win_ancho=w;
		win_alto=y;
	}
	features=("top="+y+",left="+x+",width="+win_ancho+",height="+win_alto+",resizable=yes,scrollbars=yes");
	promo=window.open(theURL,winName,features);
	promo.focus();
}

