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

function HighLightError(formname,elemenent){
	document[formname][elemenent].style.backgroundImage='url(images/txtbox-bg-e.gif)';	
	document[formname][elemenent].style.backgroundColor='#FFFF66';
	document[formname][elemenent].style.borderColor='#AB4445'; 
	document[formname][elemenent].style.color='#AB4445';	
}

function HighLightOn(formname,elemenent){
	document[formname][elemenent].style.backgroundImage='url(images/txtbox-bg-o.gif)';
	document[formname][elemenent].style.backgroundColorr='#FFFFFF';
	document[formname][elemenent].style.borderColor='#AB4445';
	document[formname][elemenent].style.color='#000000';
}

function HighLightOff(formname,elemenent){
	document[formname][elemenent].style.backgroundImage='url(images/txtbox-bg.gif)';
	document[formname][elemenent].style.backgroundColorr='#FFFFFF';
	document[formname][elemenent].style.borderColor='#AAAAAA';
	document[formname][elemenent].style.color='#000000';
}
function HighLightOnM(formname,elemenent){
	document[formname][elemenent].style.backgroundColorr='#003232';
	document[formname][elemenent].style.borderColor='#00AEAE';
	document[formname][elemenent].style.color='#FFFFFF';
}