function toggle(e)
{var curr=document.getElementById(e);if(curr.style.display=="none"||curr.style.display=="")
{if(navigator.appName=="Microsoft Internet Explorer"){curr.style.display="block";}else{curr.style.display="table-row";}}else{curr.style.display="none";}}
function toggleall(curID)
{var tlength=curID.length;var i;var divs=document.getElementsByTagName("TR");for(i=0;i<divs.length;i++){var curselect=divs[i].id;var tarea=curselect.substring(0,tlength);if(tarea==curID){if(navigator.appName=="Microsoft Internet Explorer"){document.getElementById(curselect).style.display="block";}else{document.getElementById(curselect).style.display="table-row";}}}}
function highlight_ship(profileID)
{var divs=document.getElementsByTagName("DIV");for(i=0;i<divs.length;i++){if(divs[i].id.indexOf("shipprof_")==0){divs[i].style.backgroundColor="#F2F2F2";}}
document.getElementById("shipprof_"+profileID).style.backgroundColor="#FFFFF3";}
function quickcheck(a){if(a=="emailaddress"){var str=document.getElementById("customers_email_address").value;var re=/^[\w-]+(\.[\w-]+)*@([\w-]+\.)+[a-zA-Z]{2,7}$/;if(!str.match(re)){document.getElementById("email_label").style.backgroundColor="#FF0000";document.getElementById("submitform").disabled=true;document.getElementById("showfix").style.display="";document.getElementById("emailerror").style.color="White";document.getElementById("emailerror").innerHTML="<br>invalid email";return false;}else{document.getElementById("email_label").style.backgroundColor="";document.getElementById("submitform").disabled=false;document.getElementById("showfix").style.display="none";}
theframe.location.href="/usa/workerbee.php?verifyvsdb=1&area=customers_email_address&value="+str;}}
