/* JavaScript PCInet */

/* Basket BASK */
function validate_logn(emid,pwid){
  var em=document.getElementById(emid);
  if ((em.value==null)||(em.value=="")){
    alert("Enter your Login Name.");
    em.focus();
    return false;
  }
/*
  if (echeck(em.value)==false){
    em.value="";
    em.focus();
    return false;
  }
*/
  if(pwid.length > 0){
    var pw=document.getElementById(pwid);
    if ((pw.value==null)||(pw.value=="")){
      alert("Enter your password.");
      pw.focus();
      return false;
    }
  }
  return true;
}

function Billing(cmd) {
  if (cmd=="copy") {
    document.checkout.BillFirstName.value=document.checkout.ShipFirstName.value;
    document.checkout.BillLastName.value=document.checkout.ShipLastName.value;
    document.checkout.BillAddress.value=document.checkout.ShipAddress.value;
    document.checkout.BillCity.value=document.checkout.ShipCity.value;
    document.checkout.BillStateSelect.value=document.checkout.ShipStateSelect.value;
    document.checkout.BillState.value=document.checkout.ShipState.value;
    document.checkout.BillZip.value=document.checkout.ShipZip.value;
    document.checkout.BillCountry.value=document.checkout.ShipCountry.value;
    document.checkout.BillEmail.value=document.checkout.ShipEmail.value;
    document.checkout.BillPhone.value=document.checkout.ShipPhone.value;
    document.checkout.BillFax.value=document.checkout.ShipFax.value;
    document.checkout.BillCompany.value=document.checkout.ShipCompany.value;
    document.checkout.BillCountry.selectedIndex=document.checkout.ShipCountry.selectedIndex
  }
  if (cmd=="clear") {
    document.checkout.BillFirstName.value="";
    document.checkout.BillLastName.value="";
    document.checkout.BillAddress.value="";
    document.checkout.BillCity.value="";
    document.checkout.BillStateSelect.value="";
    document.checkout.BillState.value="";
    document.checkout.BillZip.value="";
    document.checkout.BillCountry.value="";
    document.checkout.BillEmail.value="";
    document.checkout.BillPhone.value="";
    document.checkout.BillFax.value="";
    document.checkout.BillCompany.value="";
  }
}

function Customer_Billing(cmd) {
  if (cmd=="copy") {
    document.account.Customer_BillFirstName.value=document.account.Customer_ShipFirstName.value;
    document.account.Customer_BillLastName.value=document.account.Customer_ShipLastName.value;
    document.account.Customer_BillAddress.value=document.account.Customer_ShipAddress.value;
    document.account.Customer_BillCity.value=document.account.Customer_ShipCity.value;
    document.account.Customer_BillStateSelect.value=document.account.Customer_ShipStateSelect.value;
    document.account.Customer_BillState.value=document.account.Customer_ShipState.value;
    document.account.Customer_BillZip.value=document.account.Customer_ShipZip.value;
    document.account.Customer_BillCountry.value=document.account.Customer_ShipCountry.value;
    document.account.Customer_BillEmail.value=document.account.Customer_ShipEmail.value;
    document.account.Customer_BillPhone.value=document.account.Customer_ShipPhone.value;
    document.account.Customer_BillFax.value=document.account.Customer_ShipFax.value;
    document.account.Customer_BillCompany.value=document.account.Customer_ShipCompany.value;
    document.account.Customer_BillCountry.selectedIndex=document.account.Customer_ShipCountry.selectedIndex
  }
  if (cmd=="clear") {
    document.account.Customer_BillFirstName.value="";
    document.account.Customer_BillLastName.value="";
    document.account.Customer_BillAddress.value="";
    document.account.Customer_BillCity.value="";
    document.account.Customer_BillStateSelect.value="";
    document.account.Customer_BillState.value="";
    document.account.Customer_BillZip.value="";
    document.account.Customer_BillCountry.value="";
    document.account.Customer_BillEmail.value="";
    document.account.Customer_BillPhone.value="";
    document.account.Customer_BillFax.value="";
    document.account.Customer_BillCompany.value="";
  }
}

function pwtoggle(ischecked, id){
  obj=document.getElementById(id);
  if(ischecked){
    obj.style.display='block';
  } else {
    obj.style.display='none';
  }
}


