function refresh()
{
	document.form1.reset();	
}

function clear()
{
	document.form2.reset();
}


		function clearVal(ctrl, val)
		{
			if(ctrl.value == val)
			ctrl.value="";
		}
		function getVal(ctrl, val)
		{
			if(ctrl.value == "")
			ctrl.value=val;
		}


