function login_add(){
	var good, extt;
	good = false;
	extt= document.coLogin;

	//if(extt.Billcname.value == "" || extt.Billcname.value == 0) {
		//alert("No COMPANY NAME was entered in the BILLING section!!!!!!!");
	//}
	if(extt.Billfirstname.value == "" || extt.Billfirstname.value == 0) {
		alert("No FIRST NAME was entered in the BILLING section!!!!!!!");
	}else if(extt.Billlastname.value == "" || extt.Billlastname.value == 0) {
		alert("No LAST NAME was entered in the BILLING section!!!!!!!");
	}else if(extt.Billadd.value == "" || extt.Billadd.value == 0) {
		alert("No ADDRESS was entered in the BILLING section!!!!!!!");
	}else
	//if(extt.Bill2add.value == "" || extt.Bill2add.value == 0) {
		//alert("No 2ND ADDRESS was entered in the BILLING section!!!!!!!");
	//}
	if(extt.Billcity.value == "" || extt.Billcity.value == 0) {
		alert("No CITY was entered in the BILLING section!!!!!!!");
	}else if(extt.Billzip.value == "" || extt.Billzip.value == 0) {
		alert("No ZIP CODE was entered in the BILLING section!!!!!!!");
	}else if(extt.Billemail.value == "" || extt.Billemail.value == 0) {
		alert("No EMAIL was entered in the BILLING section!!!!!!!");
	}else
	//if(extt.Billphone.value == "" || extt.Billphone.value == 0) {
		//alert("No PHONE NUMBER was entered in the BILLING section!!!!!!!");
	//}
	//if(extt.Billfax.value == "" || extt.Billfax.value == 0) {
		//alert("No FAX NUMBER was entered in the BILLING section!!!!!!!");
	//}
	//if(extt.Shipcname.value == "" || extt.Shipcname.value == 0) {
		//alert("No COMPANY NAME was entered in the SHIPPING section!!!!!!!");
	//}
	if(extt.Shipfirstname.value == "" || extt.Shipfirstname.value == 0) {
		alert("No FIRST NAME was entered in the SHIPPING section!!!!!!!");
	}else if(extt.Shiplastname.value == "" || extt.Shiplastname.value == 0) {
		alert("No LAST NAME was entered in the SHIPPING section!!!!!!!");
	}else if(extt.Shipadd.value == "" || extt.Shipadd.value == 0) {
		alert("No ADDRESS was entered in the SHIPPING section!!!!!!!");
	}else
	//if(extt.Ship2add.value == "" || extt.Ship2add.value == 0) {
		//alert("No 2ND ADDRESS was entered in the SHIPPING section!!!!!!!");
	//}
	if(extt.Shipcity.value == "" || extt.Shipcity.value == 0) {
		alert("No CITY was entered in the SHIPPING section!!!!!!!");
	}else if(extt.Shipzip.value == "" || extt.Shipzip.value == 0) {
		alert("No ZIP CODE was entered in the SHIPPING section!!!!!!!");
	}else if(extt.adduserid.value == "" || extt.adduserid.value == 0) {
		alert("No USER ID was entered in the SHIPPING section!!!!!!!");
	}else if(extt.addpassword.value == "" || extt.addpassword.value == 0) {
		alert("No PASSWORD was entered in the SHIPPING section!!!!!!!");
	}else{
		good = true;
	}
	if(good == true){
		document.coLogin.method = 'Get'; 
		document.coLogin.action ='atdb.asp'; 
		document.coLogin.submit();
	}
}
