//--------------------------------------------------------------------------------
//Function for when mouse over on Cell
//--------------------------------------------------------------------------------
function onOverCell(idcell) {
document.getElementById(idcell).style.background = "url('/style/img/lev0_bg2.gif')";
}
//--------------------------------------------------------------------------------
//Function for when mouse out on Cell
//--------------------------------------------------------------------------------
function onOutCell(idcell) {
document.getElementById(idcell).style.background = "url('/style/img/lev0_bg1.gif')";
}
//--------------------------------------------------------------------------------
//Function for submit the enquiry form
//--------------------------------------------------------------------------------
function form_validation()
{
	if(document.enq_form.Email.value!="" &&  document.enq_form.Phone.value!="")
	{
		return true;
	}
	
	alert("You must Enter '*' fields" );
	return false;
}

//--------------------------------------------------------------------------------
//end of file
//--------------------------------------------------------------------------------
