function escribir(frase)  {
	document.write(frase);
}
function validaFinal()
{
	if (document.fmail.nombre.value.length==0)
	{
		alert("Por favor ingrese su Nombre");
		document.fmail.nombre.focus();
	}
	else if (document.fmail.mail.value=="")
	{
		alert("Por favor ingrese un Mail");
		document.fmail.mail.focus();
	}	
	else
	{		
		re=/\w+([-+.]\w+)*@\w+([-]\w+)*\.\w+([.]\w+)*/;
		if (!re.test(document.fmail.mail.value)) 
		{
			alert("El e-mail ingresado es incorrecto, inténtelo de nuevo");
			document.fmail.mail.focus();	
		}
		else if (document.fmail.consulta.value=="")
		{
			alert("Por favor escriba su consulta");
			document.fmail.consulta.focus();
		}
		else
		{
			document.fmail.submit();
		}
	}
}
function derecho(e)
{
		if (navigator.appName == 'Netscape' && (e.which == 2 || e.which == 3))
				return false;
		else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button == 3 || event.button == 2)) 
		{
					alert("Sitio web desarrollado por Acronix Digital Solutions www.acronix.com.ar - Copyright © 2007");
					return false;
		}
		return true;
}
document.onmousedown=derecho;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
window.onmousedown=derecho;
