function contactProfile(proUser){
	window.location.href = sRoot + 'search/contact_profile.asp?cnt=' + proUser	
}

function validateCntForm(x){
		var e = "";
		var r = true;		
		
		if(x.txtComments.value == "") {
			e += "\nPlease enter a Comments";
			r = false;		
		}								
		if(r == false) {
			alert("The following must be completed first:\n"+e);
			}
		return r;
}

