var clr=0;
function clearinput()
{
	if (clr==0)
	{
		var oInput=document.getElementById("email");
		oInput.setAttribute("value","");
		clr=1;
	}
}
