//
// Confirmation Message Button
//
// href="" onClick="tmt_confirm('Are%20you%20sure%20you%20want%20to%20perform%20this%20action?');return document.MM_returnValue">
//
function tmt_confirm(msg){
	document.MM_returnValue=(confirm(unescape(msg)));
}
//
// autotab(this, document.form_add.Users_Phone_Day_Prefix)
//
function autotab(original,destination){
	if (original.getAttribute&&original.value.length==original.getAttribute("maxlength"))
destination.focus()
}
//
//
function checkzip(){
var x=document.form1.Company_Zip.value
var anum=/(^\d+$)|(^\d+\.\d+$)/
if (anum.test(x))
testresult=true
else{
alert("Please Input A Valid Zip Code Number!")
testresult=false
}
return (testresult)
}
function checkban(){
if (document.layers||document.all||document.getElementById)
return checkzip()
else
return true
}
//