// JavaScript Document
//See intranet help pages for further instructions.

//Create a hash of some of the form variables and a random string that is to be compared against the same form variables in the coldfusion page.
function checkHash(){
	hRef=document.getElementById('h');
	title=document.getElementById('title');
	email=document.getElementById('email');
	continent=document.getElementById('continent');
	hStr=title.value + title.value.length + email.value + email.value.length + 'fsdmklfdopafk' + continent.value + continent.value.length;
	hRef.value=hex_md5(hStr);
	return true;
	}

