// JavaScript Document
	function findPhotos(){
		var findPhotos = document.formFindPhotos;
		var code       = findPhotos.code.value;
		if(code != " enter your photo" || code == ""){
			showMMDisplay('BALT',false);
		}
		return false;
	}

	function cleaned(){
		if (document.formFindPhotos.code.value == " enter your photo")
			document.formFindPhotos.code.value = "";
	}

	function confirm(){
		var form       = document.form;
		var name       = document.name;
		var email      = document.form.email;
		var message    = document.message;
					
		if(form.name.value == ""){
			  alert("Please it fills the field name to send its message.")
		form.name.focus();
		return false
			}
		
		if(form.email.value == ""){
			alert("Please it fills the field email to send its message.")
			form.email.focus();
		return false
			}
		if (!email.value.match(/([a-zA-Z0-9._-]+@[a-zA-Z0-9._-]+\.[a-zA-Z0-9._-]+)/gi)){
			alert('It fills with an address of valid email.');
			email.focus();
		return false;
		}
		
		if(form.message.value == ""){
			alert("Please it fills the field message.")
			form.message.focus();
		return false
			}
			form.submit();
}

// Open window
function openWindow(name){
    var name
    var winTop = screen.availHeight/2 - 300;
    var winLeft = screen.availWidth/2 - 350;	
	if(name == "ShotoverTicket"){
	    var windowFeatures = "menubar=no,toolbar=no,location=no,scrollbars=yes, scrollbar=no,scrolling=no,status=yes,width=608,height=405,top=0,left=0,";
	}
	if(name == "shotoverText"){
	    var windowFeatures = "menubar=no,toolbar=no,location=no,scrollbars=yes, scrolling=auto,status=yes,width=350,height=431,top=0,left=0,";
	}
	if(name == "ticketofferscan"){
	    var windowFeatures = "menubar=no,toolbar=no,location=no,scrollbars=yes, scrollbar=no,scrolling=no,status=yes,width=240,height=740,top=0,left=0,";
	}
	if(name == "nzski"){
	    var windowFeatures = "menubar=no,toolbar=no,location=no,scrollbars=yes, scrollbar=no,scrolling=no,status=yes,width=607,height=455,top=0,left=0,";
	}
	if(name == "2for1"){
	    var windowFeatures = "menubar=no,toolbar=no,location=no,scrollbars=yes, scrollbar=no,scrolling=no,status=yes,width=628,height=478,top=0,left=0,";
	}
    windowFeatures = windowFeatures + "left=" + winLeft + ",";
    windowFeatures = windowFeatures + "top=" + winTop;
    window.open("../showImage.php?name="+name,"Cep",windowFeatures);
}

// Open window Machine
function openWindowMachine(name){
    var name
    var winTop = screen.availHeight/2 - 300;
    var winLeft = screen.availWidth/2 - 350;	
    var windowFeatures = "menubar=no,toolbar=no,location=no,scrollbars=yes, scrollbar=no,scrolling=no,status=yes,width=628,height=417,top=0,left=0,";
    windowFeatures = windowFeatures + "left=" + winLeft + ",";
    windowFeatures = windowFeatures + "top=" + winTop;
    window.open("../showImage.php?name="+name,"Cep",windowFeatures);
}	