function verImagenServicio(form,file,codigoServ,nombreServ)
{
             try {  
			 //alert("En construcción. "+codigo);
	var url="imagenes_servicio.php?codigoServicio="+codigoServ+"&nombreServicio="+nombreServ;
	window.open(url,'imagenes_servicio',   'width=440,height=508,toolbar=0,scrollbars=0,left=100,top=100');
}
catch(exception) {
            if (exception.description == null) {
               alert("Excepción: " + exception.message);  
           } else {
                   alert("Excepción: " + exception.description);
           }
}
	  
}

/////Testimonios/////
function verTestimonios(form,file,codigo,nombre)
{
            try {

			form.txt_codServicio.value=codigo;
			form.txt_nombreServicio.value=nombre;
            form.action = file;
            form.submit();
			return true;
			
			}
			  catch(exception) {
                     if (exception.description == null) {
                        alert("Excepción: " + exception.message);  
                     } else {
                             alert("Excepción: " + exception.description);
                     }
           }
 }
function verImagenTestimonio(form,file,codigoTest)
{
			 try {  
			 //alert("En construcción. "+codigo);
	var url="imagenes_testimonio.php?codigoTestimonio="+codigoTest;
	window.open(url,'imagenes_testimonio',   'width=440,height=508,toolbar=0,scrollbars=0,left=100,top=100');
}
catch(exception) {
            if (exception.description == null) {
               alert("Excepción: " + exception.message);  
           } else {
                   alert("Excepción: " + exception.description);
           }
}
	  
}
function verImagenProducto(form,file,codigo)
{
	 try {  
	var url="imagen_producto.php?codigoproducto="+codigo;
	window.open(url,'Imagen_Producto','width=440,height=438,toolbar=0,scrollbars=0,left=100,top=100'); 
	 }
	 catch(exception) {
            if (exception.description == null) {
               alert("Excepción: " + exception.message);  
           } else {
                   alert("Excepción: " + exception.description);
           }
    }
}