// Print screen

function printMe () {
	window.print();
}

// clear form on focus

function clearText(thefield){
	if (thefield.defaultValue==thefield.value)
	thefield.value = ""
}
	
function trim(str) {
  return str.replace(/^\s+|\s+$/g, '');
}