////propiedades
/*
		       id? true : false;				//popup id
				x? true : false;					//x position
				y? true : false;					//y position
				width? true : false;			//width
				height? true : false;		//height
				margin? true : false;		//margin: initial margin from screen
				label? true : false;			//label: title of new popup
				resize? true : false;		//1: is resizable, 0: not resizable
				text? true : false;			//text: content to display in popup
				close? true: false;			//si true, cierre manual, si false cierre automatico
				iframe? true: false;		///url del iframe

				iframe:'/Publicidad/preview/id/'+id

*/


function abre_popup_sistema(label,width,height,titular1,titular2,texto1,texto2,resize,close){
  				$().newPopup({
				id:'popup_sistema',
				label:label,
				width:width,
				height:height,
				close:true,
				resize:false,
                text:'<div class="parrafo_popup" style="line-height:12px;">'+titular1+'<br />'+titular2+texto1+texto2+'</div>'

				});             


}
function cierra(tipo){
if (tipo==1){$("#popup_sistema").hide();}
if (tipo==2){muestra();}
}
function muestra(objeto){
ventanaaborrar=top.document.getElementById("popup_iframe");
$(ventanaaborrar).hide();
}
function abre_popup_iframe(label1,pagina,width1,height1,close1,resize1){
  				$().newPopup({
				id:'popup_iframe',
				label:label1,
				width:width1,
				height:height1,
				close:true,
				resize:resize1,
				iframe:pagina
			});             

}

function enviar(){
label1="E-mail this link";
pagina="form_envia_amigo.php";
width1=340;
height1=313;
height1=320;


close1=1;
resize1=false;
abre_popup_iframe(label1,pagina,width1,height1,close1,resize1);
$(".ventanaMin").css("display","none");
$(".ventanaMax").css("display","none");

}

function error_popup(cabecera,titular1,titular2,texto1,texto2){
label1=cabecera;
width1=300;
height1=240;
resize1=false;
close1=true;
abre_popup_sistema(label1,width1,height1,titular1,titular2,texto1,texto2,resize1,close1);
$(".ventanaMin").css("display","none");
$(".ventanaMax").css("display","none");

}

function enconstruccion_popup(cabecera,titular1,titular2,texto1,texto2){
label1=cabecera;
width1=300;
height1=240;
resize1=false;
close1=true;
abre_popup_sistema(label1,width1,height1,titular1,titular2,texto1,texto2,resize1,close1);
$(".ventanaMin").css("display","none");
$(".ventanaMax").css("display","none");

}




