function img_act(imgName) {
	imgon = eval(imgName + "on.src");
	document [imgName].src = imgon;
}

function showEmailList() {
	window.open("EmailList.jsp", "EmailList","width=460,height=320,scrollbars=no,top=130,left=220");
}

function img_inact(imgName) {
	imgoff = eval(imgName + "off.src");
	document [imgName].src = imgoff;
}

function submitForm() {

	if (document.all || document.getElementById) {
 	  for (i = 0; i < frmMain.length; i++) {
	     var tempobj = frmMain.elements[i];
	     
	     if (tempobj.type.toLowerCase() == "submit") {
	         tempobj.disabled = true;
	     }
	  }
	}
	document.frmMain.submit();
	return true;
}

function submitFormSetValue(value) {

	if (document.all || document.getElementById) {
 	  for (i = 0; i < frmMain.length; i++) {
	     var tempobj = frmMain.elements[i];
	     
	     if (tempobj.type.toLowerCase() == "submit") {
	         tempobj.disabled = true;
	     }
	  }
	}
	document.frmMain.actionButton.value = value;
	document.frmMain.submit();
	return true;
}

function showGenerator() {
	window.open("textGenerator.jsp", "TextGenerator","width=700,height=675,scrollbars=yes,top=30,left=220");
}

function showDealerInfo(param) {
	window.open("DealerContact.jsp?id=" + param, "ContactInfo","width=460,height=320,scrollbars=no,top=130,left=220");
}



