
function submitForm(formname) {
    document[formname].submit();
}

function HighLightError(formname,elemenent){
	document[formname][elemenent].style.backgroundColor='#FFFFCC';
	document[formname][elemenent].style.borderColor='#990000'; 
}

function HighLightOn(formname,elemenent){
	document[formname][elemenent].style.backgroundColor='#FFFFFF';
	document[formname][elemenent].style.borderColor='#2D4762'; 
}

function HighLightOff(formname,elemenent){
	document[formname][elemenent].style.backgroundColor='#FFFFFF';
	document[formname][elemenent].style.borderColor='#CEBDA5'; 
}