/*
Xpresa_openPop V.1
*/


function xpresaOpenPop(idcat, idedit, origen, page){


if(idcat == undefined || idedit == undefined){
alert("Error en la llamada, faltan datos");
return;
}

//Tam del pop
var alto;
var ancho;
var arr;
var izq;
var pop;

pw = screen.width;


if(screen.width >= 1024){
ancho = 1010;
alto = 700;
pop = 1024;

		if(screen.width > 1024){
		izq = (screen.width - ancho)/2;
		arr = (screen.height- alto)/2;
		}
		else
		{
		izq = 0;
		arr = 0;
		}


}
else
{
ancho = 780;
alto = 530;
izq = 0;
arr = 0;
pop = 800;
}






if(origen == undefined || origen == ''){
origen = 0;
}

if(page == undefined || page == ''){
page = 0;
}

alto = screen.availHeight;
ancho = screen.availWidth;



URL = "http://www.xpresa.es/load_pop.aspx?idcat="+idcat+"&idedit="+idedit+"&ori="+origen+"&page="+page+"&pop="+pop;
windowPop = window.open(URL,'','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,left='+izq+', top='+arr+', width='+ancho+',height='+alto+'');














}
