function mostrar_foto(p1,p2,p3)  //path,image,title
{
   width=600;
   height=430;
   var left = Math.floor( (screen.width - width) / 2);
   var top = Math.floor( (screen.height - height) / 2);
   var winParms = "top=" + top + ",left=" + left + ",height=" + height + ",width=" + width+",scrollbars";
   window.open(webhome+"mostrar_foto.php?imagen="+p1+"/"+p2+"&titulo="+p3, "printwin", winParms);
}

function mostrar_foto2(p1,p2,p3)  //path,image,title
{
   width=1000;
   height=600;
   var left = Math.floor( (screen.width - width) / 2);
   var top = Math.floor( (screen.height - height) / 2);
   var winParms = "top=" + top + ",left=" + left + ",height=" + height + ",width=" + width+",scrollbars,resizable=";
   window.open(webhome+"mostrar_foto.php?imagen="+p1+"/"+p2+"&titulo="+p3, "printwin", winParms);
}

function volver(pag) { 
if (pag=="1") { 
	window.location="efectores_salud.php";
}
if (pag=="2") { 
	window.location="uaps.php";
}	
if (pag=="3") { 
	window.location="buscador_salud.php?action=mostrar";
}	
}

function enviar_email(sector)
{
	
	width=580;
    height=400;
	var left = 0;
	var top = 0;
    var winParms = "top=" + top + ",left=" + left + ",height=" + height + ",width=" + width+",scrollbars=no";
   	window.open(webhome+"email.php?destino="+sector, "editwin", winParms);
}

function abrir_ventana(pag)
{
	
	width=screen.width-(screen.width*40/100);
    height=screen.height-(screen.height*10/100);
	var left = 0;
	var top = 0;
    var winParms = "top=" + top + ",left=" + left + ",height=" + height + ",width=" + width+",scrollbars=yes";
   	window.open(webhome+pag, "editwin", winParms);
}

function imprimir()
{
   window.print();
}

