var defaultBackground = "#CCD4A3";

function into(oObj)
{
	oObj.style.cursor="pointer"; 
	oObj.style.cursor = "hand";
}

function outof(oObj)
{
	oObj.style.cursor="default";
}	

function rollin(oObj)
{
	oObj.style.cursor="pointer"; 
	oObj.style.cursor = "hand";
	oObj.style.background="ivory";
}

function rollout(oObj)
{
oObj.style.cursor="default";
oObj.style.background=defaultBackground;

}

function validate(oF)
{
	var retval=true;

	if(oF.cName.value=="" || oF.cEmail.value=="" || oF.message.value=="" || oF.cPhone.value=="")
	{
		alert("All required fields are not filled in");
		retval=false;
	}
	
	return(retval);
}