<!--- Hide from old browsers// two functions to clear form field text and readd itfunction clickclear(thisfield, defaulttext) {	if (thisfield.value == defaulttext) {		thisfield.value = "";	}}function clickrecall(thisfield, defaulttext) {	if (thisfield.value == "") {		thisfield.value = defaulttext;	}}// end hiding --->// Popup Window #############################################################################function winBRopen(theURL, Name, popW, popH, scroll) { 	var winleft = (screen.width - popW) / 2;	var winUp   = (screen.height - popH) / 2;	winProp     = 'width='+popW+',height='+popH+',left='+winleft+',t op='+winUp+',scrollbars='+scroll+',location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no'	Win         = window.open(theURL, Name, winProp)	if (parseInt(navigator.appVersion) >= 4) {		Win.window.focus();	}}