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

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

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

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