function clear(divIdName)
{
	if(document.getElementById(divIdName).value == "Enter your search terms")
	document.getElementById(divIdName).value = "";
	}

function upperCase()
{
var x=document.getElementById("fname").value;
alert(x);
document.getElementById("fname").value=x.toUpperCase();
}
function controlInside(divIdName)
{ 
	alert("helo");
	if(document.getElementById(divIdName).value == "your@email.com")
	document.getElementById(divIdName).value = "";
	
	else if(document.getElementById(divIdName).value == "")
	document.getElementById(divIdName).value = "your@email.com";
	}
	

