﻿/*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=\"Frames/EmailFrame.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=\"Frames/EmailFrame.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=\"Frames/EmailFrame.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=\"Frames/EmailFrame.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://azcops.com/SubmitForm.aspx?EmailSend="+emailSend+"&ZipSend="+zipSend;
	window.location.href = "http://azcops.com/Email.aspx?EmailSend="+emailSend;
}

function submitSearch() {
	var sterm = document.getElementById("dmcSearchInput").value;
	window.location.href = "http://azcops.com/Search.aspx?process=search_content_files&searchText="+sterm;
}

function toggleContentTag(elemID) {
    $("#"+elemID).toggle("fast");
}

 function  ActivateLocalAffiliate(elemId)
          {
            elemId.disabled=false;
            elemId.focus();
            return true;
           }