function clearText(doit) {
	doit.value='';
}


/**
*	Creates a simple popup.
*	
*/
function popupSimple(w, h, file)
{
	var popup = window.open(file,
							'spop',
							"width="+w+",height="+h);
	return false;
}