function getreport() {

	if(document.forms.aspnetForm.customcode.value.length < 6){
		alert("You must enter a 6 digit code. \n Please try again.");
		return false;
	}
var code = document.forms.aspnetForm.customcode.value;
var url = "http://content.rtmd.org/marketing/default.aspx?c=";
window.location.href= url + code;

}
