//////////////////////////////////////////////////
////////// 		CLEAR TEXTBOX		//////////////
//////////////////////////////////////////////////
function clear_textbox(strId, strTextFieldValue) {
	if (document.getElementById(strId).value == strTextFieldValue) {
		document.getElementById(strId).value = '';
	}
	else if (document.getElementById(strId).value == '') {
		document.getElementById(strId).value = strTextFieldValue;
	}
} 

//////////////////////////////////////////////////////////////////////////////////////
////////////// 	MENU ROLLOVER: this is currently not used 7/22/2009		//////////////
//////////////////////////////////////////////////////////////////////////////////////
/*
bName = navigator.appName;
   bVer=parseInt(navigator.appVersion);
   if ((bName == "Netscape" && bVer>=3) ||
   (bName == "Microsoft Internet Explorer" && bVer >=3)) br="n3";
   else br="n2";
   //create image objects, preload all active and inactive images.
   if (br== "n3") {
img01on = new Image();
img01on.src= "../images/menuHome_over_01.gif";

img01off = new Image();
img01off.src= "../images/menuHome_01.gif";

}
function imgAct(imgName) {
if (br == "n3") {
document[imgName].src = eval(imgName + "on.src");
}
}
function imgInact(imgName) {
if (br == "n3") {
document[imgName].src = eval(imgName + "off.src");
}
}
*/
