function remember(){

valid8=1
if (document.CustomerLogIn.CGC.value==""){
valid8=0
}

if (document.CustomerLogIn.actn.value==""){
valid8=0
}

if (valid8==0){
alert("Please Completely Fill in Both Identifiers")
}

if (valid8==1){
aaaa=document.CustomerLogIn.CGC.value.toLowerCase();
bbbb=document.CustomerLogIn.actn.value.toLowerCase();
//preserveinfo="custpref1"
//document.cookie = preserveinfo + "=" + "; expires=Thu, 01-Jan-70 00:00:01 GMT";
//qna=document.CustomerLogIn.setcustinfo.checked
//if(qna){
//holdit=60
//preserveinfo="custpref1"
//document.cookie = preserveinfo + "=" + "; expires=Thu, 01-Jan-70 00:00:01 GMT";
//chip1=document.CustomerLogIn.CGC.value
//chip2=document.CustomerLogIn.actn.value
//var today = new Date();
//var expire = new Date();
//expire.setTime(today.getTime() + 3600000*24*holdit);
//p1 = preserveinfo+"="+ escape(chip1)+"!|**"+escape(chip2)+ ";expires="+expire.toGMTString()
//p1 = preserveinfo+"="+ chip1+"!|**"+chip2+ ";expires="+expire.toGMTString()
//document.cookie=p1
//}
}
if (aaaa=="tech2"){
cccc="https://cms.comtech21.com/omniview/default.aspx?from="+aaaa+"&ACCTNUM="+bbbb+"&X=Y"
location.href=cccc//alert(" Not a Registered User ")
}else{
cccc="https://cms.comtech21.com/omniview/default.aspx?from="+aaaa+"&ACCTNUM="+bbbb+"&X=Y"
location.href=cccc//alert(" Not a Registered User ")
}
}
function ee(){
cookieName="custpref1"
theCookie=""+document.cookie;
ind=theCookie.indexOf(cookieName);
if (ind==-1 || cookieName=="") return "";
ind1=theCookie.indexOf(';',ind);
if (ind1==-1) ind1=theCookie.length;
doug=theCookie.substring(ind+cookieName.length+1,ind1)
ape=doug.indexOf('!|**')//+4
doug1=doug.substring(0,ape)
doug2=doug.substring(ape+4)
document.CustomerLogIn.CGC.value=doug1
document.CustomerLogIn.actn.value=doug2
}