function validateform()
{

var comments = "", department = "", position = "", publicsafety = 0;

comments=document.contactusform.comments.value.toUpperCase();
department=document.contactusform.department.value.toUpperCase();
position=document.contactusform.position.value.toUpperCase();


publicsafety=comments.indexOf("DISCOUNT");

if (publicsafety>-1 && document.contactusform.personnel[0].checked) {
alert('Thank you for your interest in Redback Boots and our 10percent public safety discount.\r\nPlease write down the following coupon code that you may use on the website.\r\nCoupon Code : ' + couponcode);

document.contactusform.discount.value="***Coupon Code Sent***";

	//name = 'mymainwindow';
	msgWindow=window.open('http://www.redbackboots.com/PublicSafety.html','mymainwindow');
	//window.focus('mymainwindow');
   
}

//document.contactusform.comments.value = document.contactusform.comments.value.substring(0,255);
//Access field 255 chr limit

document.contactusform.action = "guestbook/add_to_contactus.asp";
document.contactusform.submit();             // Submit the page

document.contactusform.action = "/cgi-bin/formmail/contactustest.pl";
return true;
}