// JavaScript Document

onload=function() {
	var repnote = document.getElementById('repContactNote');
	
	repnote.innerHTML =
		"Looking for other items? Contact Doug by phone at 561-375-8825";
	
}

function write_replink() {
	document.write("<a href='http://dwalcoff.geigermall.com' target='_blank' class='replink'>http://dwalcoff.geigermall.com</a>");
}

function checkSearchPlural() {
	var term = document.getElementById('key').value;
	var termlength = term.length;

	if (term.substring(termlength - 1, termlength) == "s") {
	    term = term.substring(0, termlength - 1);
	    document.getElementById('key').value = term;
	    return true;
	}
	else {
		return true;
	}
}
