/* clear textfield */


function clearInput(box,text){
	if (box.value==text)
		box.value="";
}
