function customerService_init() {
	//alert("1");
	var message = common_getCookie('SendEmailFatal');
	if (message!=null && message!=""){
	    common_showBareId('customerService_showFatal');
	    common_expireCookie('SendEmailFatal');	    
	}

	var error = common_getCookie('SendEmailError');
		//alert("2");
	if (error!=null && error!=""){
			//alert("3");
	    common_showBareId('error');
	    common_expireCookie('SendEmailError');

	    error = common_getCookie('CustomerServiceErrorSenderFirstName');
		if (error!=null && error!=""){
		    common_showBareId('errorSenderFirstName');
		    common_expireCookie('CustomerServiceErrorSenderFirstName');
		}

	    error = common_getCookie('CustomerServiceErrorSenderLastName');
			//alert("4");
		if (error!=null && error!=""){
		    common_showBareId('errorSenderLastName');
		    common_expireCookie('CustomerServiceErrorSenderLastName');
		}

	    error = common_getCookie('CustomerServiceErrorSenderEmail');
		if (error!=null && error!=""){
		    common_showBareId('errorSenderEmail');
		    common_expireCookie('CustomerServiceErrorSenderEmail');
		}

	    error = common_getCookie('CustomerServiceErrorSubject');
			//alert("5");
		if (error!=null && error!=""){
		    common_showBareId('errorSubject');
		    common_expireCookie('CustomerServiceErrorSubject');
		}

	    error = common_getCookie('CustomerServiceErrorComments');
			//alert("6");
		if (error!=null && error!=""){
		    common_showBareId('errorComments');
		    common_expireCookie('CustomerServiceErrorComments');
		}
	}

	var confirmation = common_getCookie('SendEmailConfirmation');
		//alert("7");
	if (confirmation!=null && confirmation!=""){
	    common_showBareId('confirmation');
	    common_hideBareId('customerServiceFormDIV');
	    common_hideBareId('customerServiceProblemDIV');
	    common_expireCookie('SendEmailConfirmation');	    
	}

	var confirmationSignUp = common_getCookie('SendSignUpConfirmation');
		//alert("8");
	if (confirmationSignUp!=null && confirmationSignUp!=""){
	    common_showBareId('confirmationSignUp');
	    common_hideBareId('signupFormDIV');
	    common_hideBareId('signupFormProblemDIV');
	    common_expireCookie('SendSignUpConfirmation');	    
	}


	var firstName = common_getCookie('CustomerServiceValueFirstName');
		//alert("9");
	if (firstName!=null && firstName!=""){
		if (document.getElementById("firstName")){
			document.getElementById("firstName").value=firstName;
		}
	    common_expireCookie('CustomerServiceValueFirstName');	    
	}	
	var lastName = common_getCookie('CustomerServiceValueLastName');
		//alert("10");
	if (lastName!=null && lastName!=""){
		if (document.getElementById("lastName")){
			document.getElementById("lastName").value=lastName;
		}
	    common_expireCookie('CustomerServiceValueLastName');	    
	}	
	//var phone = common_getCookie('CustomerServiceValueLastName');
	//alert("phone");
	//if (phone!=null && phone!=""){
	//	if (document.getElementById("phone")){
	//		document.getElementById("phone").value=phone;
	//	}
	//    common_expireCookie('CustomerServiceValueLastName');	    
	//}	
	var email = common_getCookie('CustomerServiceValueEmail');
		//alert("12");
	if (email!=null && email!=""){
		if (document.getElementById("email")){
			document.getElementById("email").value=email;
		}
	    common_expireCookie('CustomerServiceValueEmail');	    
	}	
	var subject = common_getCookie('CustomerServiceValueSubject');
		//alert("13");
	if (subject!=null && subject!=""){
		if (document.getElementById("subject")){
			document.getElementById("subject").value=subject;
		}
	    common_expireCookie('CustomerServiceValueSubject');	    
	}	
	var comments = common_getCookie('CustomerServiceValueComments');
		//alert("14");
	if (comments!=null && comments!=""){
		if (document.getElementById("comments")){
			document.getElementById("comments").value=comments;
		}
	    common_expireCookie('CustomerServiceValueComments');	    
	}	
}