function abreventana(url){
	var properties = "toolbar=no,menubar=yes,location=no,scrollbars=yes";
	var nombre="''";
	abreVentanaCentrada(url, screen.width, screen.height);
}

function abrebanner(url){
	var properties = "toolbar=no,directories=no,menubar=no,location=no,status=no,resizable=no,scrollbars=no";
	var nombre="''";
	abrebannerposicion(url, screen.width, screen.height);
}

function abrenoticia(url){
	var properties = "toolbar=no,directories=no,menubar=no,location=no,status=no,resizable=no,scrollbars=no";
	var nombre="''";
	abrenoticiaposicion(url, screen.width, screen.height);
}

function abreventanapequenya(url){
	var properties = "toolbar=no,directories=no,menubar=no,location=no,status=no,resizable=no,scrollbars=no";
	var nombre="''";
	abreVentanapequenyaCentrada(url, screen.width, screen.height);
}









function abreVentanaCentrada(path,longX,longY){
	var pX,pY,wX=longX-200,hY=longY-300;
	pX=(screen.width/2)-(wX/2);pY=(screen.height/2)-(hY/2)-25; 
	var ventanuco=window.open(path,'','scrollbars=yes,resizable=yes,menubar=yes,toolbar=no,width='+wX+',height='+hY+',left='+pX+',top='+pY);
	return ventanuco;

}

function abrebannerposicion(path,longX,longY){
	var pX,pY,wX=800,hY=220;
	pX=(screen.width/2)-(wX/2)-12;pY=(screen.height/2)-(hY/2)-50; 
	var ventanuco=window.open(path,'','toolbar=no,directories=no,menubar=no,location=no,status=no,resizable=no,scrollbars=no,width='+wX+',height='+hY+',left='+pX+',top='+pY);
	return ventanuco;

}

function abrenoticiaposicion(path,longX,longY){
	var pX,pY,wX=815,hY=700;
	pX=(screen.width/2)-(wX/2)-12;pY=(screen.height/2)-(hY/2)-50; 
	var ventanuco=window.open(path,'','toolbar=no,directories=no,menubar=no,location=no,status=no,resizable=yes,scrollbars=yes,width='+wX+',height='+hY+',left='+pX+',top='+pY);
	return ventanuco;

}


function abreVentanapequenyaCentrada(path,longX,longY){
	var pX,pY,wX=750,hY=600;
	pX=(screen.width/2)-(wX/2);pY=(screen.height/2)-(hY/2)-30; 
	var ventanuco=window.open(path,'','toolbar=no,directories=no,menubar=no,location=no,status=no,resizable=no,scrollbars=no,width='+wX+',height='+hY+',left='+pX+',top='+pY);
	return ventanuco;

}







