// Abnre POP UP
function popitup(id)
{
	//calcula el tamaņo de pantalla
	var pAncho = screen.width;
	var pAlto = screen.height;
	var posx = (pAncho-500)/2;
	var posy = (pAlto-308)/2;
	//abre pop up
	nuevaVentana=window.open('planos.php?id_plano='+id,'plano','height=308,width=500,left='+posx+',top='+posy+'');
	if (window.focus) {nuevaVentana.focus()}
}
function videoup()
{
	//calcula el tamaņo de pantalla
	var pAncho = screen.width;
	var pAlto = screen.height;
	var posx = (pAncho-500)/2;
	var posy = (pAlto-308)/2;
	//abre pop up
	nuevaVentana=window.open('video.php','spot','height=308,width=500,left='+posx+',top='+posy+'');
	if (window.focus) {nuevaVentana.focus()}
}
function poptienda(id){
	//calcula el tamaņo de pantalla
	var pAncho = screen.width;
	var pAlto = screen.height;
	var posx = (pAncho-500)/2;
	var posy = (pAlto-500)/2;
	//abre pop up
	nuevaVentana=window.open('planos.php?id_plano='+id,'plano','height=500,width=500,left='+posx+',top='+posy+'');
	if (window.focus) {nuevaVentana.focus()}
}
function poppromohome(url){
	//calcula el tamaņo de pantalla
	var pAncho = screen.width;
	var pAlto = screen.height;
	var posx = (pAncho-350)/2;
	var posy = (pAlto-520)/2;
	//abre pop up
	nuevaVentana=window.open(url,'prommo','height=520,width=350,left='+posx+',top='+posy+'');
	if (window.focus) {nuevaVentana.focus()}
}
