// JavaScript Document

function deleteText(field, pw)
{
	field.value = "";
	if(pw)
	{
		field.type = "password";	
	}
	
}
