﻿/*main site scripts*/

function writeFormFrame() {
	var urlHash = getUrlVars();
	if(urlHash["EmailSend"] != "" && urlHash["EmailSend"] !== undefined && urlHash["ZipSend"] != "" && urlHash["ZipSend"] !== undefined) {
		document.getElementById("dmcFrameCont").innerHTML = "<iframe frameborder=\"0\" width=\"100%\" scrolling=\"no\" src=\"SubmitFormFrame.aspx?EmailSend="+urlHash["EmailSend"]+"&ZipSend="+urlHash["ZipSend"]+"\" style=\"border: 0px none ; margin: 0px; padding: 0px; height: 500px; width: 100%;\" marginheight=\"0\" marginwidth=\"0\"></iframe>";
	} else if(urlHash["EmailSend"] != "" && urlHash["EmailSend"] !== undefined) {
		document.getElementById("dmcFrameCont").innerHTML = "<iframe frameborder=\"0\" width=\"100%\" scrolling=\"no\" src=\"SubmitFormFrame.aspx?EmailSend="+urlHash["EmailSend"]+"\" style=\"border: 0px none ; margin: 0px; padding: 0px; height: 500px; width: 100%;\" marginheight=\"0\" marginwidth=\"0\"></iframe>";
	} else if(urlHash["ZipSend"] != "" && urlHash["ZipSend"] !== undefined) {
		document.getElementById("dmcFrameCont").innerHTML = "<iframe frameborder=\"0\" width=\"100%\" scrolling=\"no\" src=\"SubmitFormFrame.aspx?ZipSend="+urlHash["ZipSend"]+"\" style=\"border: 0px none ; margin: 0px; padding: 0px; height: 500px; width: 100%;\" marginheight=\"0\" marginwidth=\"0\"></iframe>";
	} else {
		document.getElementById("dmcFrameCont").innerHTML = "<iframe frameborder=\"0\" width=\"100%\" scrolling=\"no\" src=\"SubmitFormFrame.aspx\" style=\"border: 0px none ; margin: 0px; padding: 0px; height: 500px; width: 100%;\" marginheight=\"0\" marginwidth=\"0\"></iframe>";
	}
}

function submitEmailSignup() {
	var emailSend = document.getElementById("EmailSend").value;	
	//var zipSend = document.getElementById("ZipSend").value;
	//window.location.href = "http://libertyhillfire.org/SubmitForm.aspx?EmailSend="+emailSend+"&ZipSend="+zipSend;
	window.location.href = "http://libertyhillfire.org/SubmitForm.aspx?EmailSend="+emailSend;
}

function submitSearch() {
	var sterm = document.getElementById("dmcSearchInput").value;
	window.location.href = "http://libertyhillfire.org/Search.aspx?process=search_content_files&searchText="+sterm;
}
