// JavaScript Document

// makes a text field turn white and select on focus
function active (field)
	{
		var field = document.getElementById(field);
		field.style.backgroundColor="#FFF";
		field.select();
	}
	
// makes a text field turn light grey on blur
function deActive (field)
	{
		var field = document.getElementById(field);
		field.style.backgroundColor="#F2F2F2";
	}