﻿function validar() {
	var a=document.formulario.mail.value.indexOf("@");
	var b=document.formulario.mail.value.indexOf(".");
		if (a==-1 || b==-1) {
			alert ("Direccion de mail no válida");
		}
}
function ampliarImagen(imagen,desc,nombre,w,h) {
		var win = null;
		LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
		TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
		estilo ='height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars=no,resizable';
		imagen='aumentaimagen.php?ruta='+imagen+'&desc='+desc;
		//alert(imagen);
		win = window.open(imagen,nombre,estilo);
	}