﻿function eventCodeLookup() {
	
	if (document.getElementById("eventCode").value == "13109DYN") {
	alert("Welcome World Dynamites! The photos for your event are still being processed. Availability is generally 7-10 days from the date of the event.");
	} else {
	
	alert("We're sorry, your Event could not be found. Please try again.");
	}
}


function productDescription(strURL,strType,strHeight,strWidth,strNam)
	{
		var strOptions="";
		if (strType=="console") strOptions="resizable,height="+strHeight+",width="+strWidth;
		if (strType=="fixed") strOptions="height="+strHeight+",width="+strWidth;
		if (strType=="elastic") strOptions="toolbar,menubar,scrollbars,resizable,location,height="+strHeight+",width="+strWidth;
		myWindow = window.open(strURL, strNam, strOptions);
		myWindow.focus();
//		alert(strNam);
	}

function overlay() {
	el = document.getElementById("overlay");
	el.style.visibility = (el.style.visibility == "visible") ? "hidden" : "visible";
}
