function open_me(gohere)
{
window.open(gohere, "popup", config="width=475,height=450,scrollbars=yes,toolbar=no,menubar=yes,resizable=no,top=0,left=0");
}

function open_pr(gohere)
{
window.open(gohere, "press", config="width=526,height=450,menubar=yes,toolbar=no,scrollbars=yes,resizable=yes,top=0,left=0");
}

function open_pl(gohere)
{
window.open(gohere, "pl", config="width=450,height=475,scrollbars=yes,toolbar=no,menubar=yes,resizable=no,top=0,left=0");
}

function removetext() {
	document.getElementById("zip").value = ""
}
/*---------------------------//

function to check field length and restrict to only 5 char max.

//---------------------------*/
function InputLengthCheck()
{
       var currentstring=document.getElementById("zip").value
       if (currentstring.length>5){
               document.getElementById("zip").value = currentstring.substring(0,7);
       }
}