// JavaScript Document
//Validacion Formulario de Contacto

var name_pic = new Array ("Periódico \"El Universal\"", "Portada", "Poliforum", "Periódioc \"Enlace\"", "Museo de la Acuarela", "Periódico", "Periódico \"Horizonte Huatulco\"", "Periódico \"El Sol del Pacífico\"", "Periódico \"El Heraldo\"", "Diploma", "Diploma", "Diploma", "Diploma", "Diploma", "Delegación Iztapalapa, D. F.", "Delegación Coyoacán, D. F.", "Catálogo de Artistas");
function f_Contact() {
	var fname = document.getElementById ("fname").value
	var fmail = document.getElementById ("fmail").value
	var fcomment = document.getElementById ("fcomment").value
	
	submitOK = "true"
	alert_txt = ""	
	var b=/^[^@\s]+@[^@\.\s]+(\.[^@\.\s]+)+$/   
	if (fname == "" || fmail == "" || fcomment == "") {
		alert_txt = alert_txt + "\nLos campos marcados con (*) son necesarios"
		submitOK = "false"
	}
	if (!b.test(fmail)) {
		alert_txt = alert_txt + "\nEl CORREO ELECTRÓNICO no es válido"
		document.getElementById ('pMail').style.color= "#990000"			
		submitOK = "false"		
	}	
	if (submitOK == "false") {
		if (fname == "") document.getElementById ('pName').style.color = "#990000"
		else document.getElementById ('pName').style.color ="#666666"
		if (fmail == "") document.getElementById ('pMail').style.color= "#990000"
		else document.getElementById ('pMail').style.color= "#666666"
		if (fcomment == "") document.getElementById ('pComment').style.color = "#990000"
		else document.getElementById ('pComment').style.color = "#666666"
		if (!b.test(fmail)) document.getElementById ('pMail').style.color= "#990000"			
		else document.getElementById ('pMail').style.color= "#666666"
		alert (alert_txt)
		return false
	}	
}

function newLocation()	{
		window.location="index.php"
	}
	
function showPics (pic) {
	document.getElementById ("cutting").setAttribute("src","../images/scrapbook/")
	document.getElementById ("cutting").setAttribute("src","../images/scrapbook/" + pic + ".jpg")	
	document.getElementById ("txtCutting").innerHTML=name_pic [pic-1]
	}
	
function embedFlash(pelicula,ancho,alto){
     document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="'+ancho+'" height="'+alto+'" title="">');
      document.write('<param name="movie" value="'+pelicula+'.swf" />');
      document.write('<param name="quality" value="high" />');
      document.write('<param name="wmode" value="transparent" />');
      document.write('<embed src="'+pelicula+'.swf" width="'+ancho+'" height="'+alto+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent"></embed>');
     document.write('</object>');
}