<!--

function displaynext() {
	document.forms['form'].submit();
}

function displayInfo(URL) {
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=550,height=512,left = 463.5,top = 0');");
}

function doProcessing() {
	doProcessingForm();
	document.forms['form'].submit();
}

function doProcessingForm() {
	if ( document.getElementById('prequalSubmit') )
		document.getElementById('prequalSubmit').className = 'texthide'; 
	else
		document.getElementById('submitBtn').className = 'texthide';
	document.getElementById('processing').className = 'statusProcessing';
}

//-->