<!--
<!--
function newImage(arg) { // SIDE MENU FUNCTION -- Not put in by FrontPage
	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}

function changeImages() { // SIDE MENU FUNCTION -- Not put in by FrontPage
	if (document.images) {
		for (var i=0; i<changeImages.arguments.length; i+=2) {
			document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
		}
	}
}

function preloadImages() { // SIDE MENU FUNCTION -- Not put in by FrontPage
	if (document.images) {
		practice_over = newImage("/images/practice-over.jpg");
		practice_click = newImage("/images/practice-click.jpg");
		profiles_over = newImage("/images/profiles-over.jpg");
		profiles_click = newImage("/images/profiles-click.jpg");
		relations_over = newImage("/images/relations-over.jpg");
		relations_click = newImage("/images/relations-click.jpg");		
		activities_over = newImage("/images/activities-over.jpg");
		activities_click = newImage("/images/activities-click.jpg");
		tax_over = newImage("/images/tax-over.jpg");
		tax_click = newImage("/images/tax-click.jpg");
		inquiries_over = newImage("/images/inquiries-over.jpg");
		inquiries_click = newImage("/images/inquiries-click.jpg");
		address_over = newImage("/images/address-email7-over.jpg");
		address_click = newImage("/images/address-email7-click.jpg");
	}
}
// -->

function MM_displayStatusMsg(msgStr) { // STATUS BAR MSG FUNCTION - NO USER VARIABLES
  status=msgStr;
  document.MM_returnValue = true;
}

function displayWindow(theURL,winName,width,height,features) { //v3.1 POP-UP WINDOW FUNCTION
    var window_width = width;
    var window_height = height;
    var newfeatures= features;
    var window_top = (screen.height-window_height)/2;
    var window_left = (screen.width-window_width)/2;
    newWindow=window.open(''+ theURL + '',''+ winName + '','width=' + window_width + ',height=' + window_height + ',top=' + window_top + ',left=' + window_left + ',features=' + newfeatures + '');

    newWindow.focus();
}

// FRONTPAGE POP-UP WINDOW BEHAVIOR - VARIABLES ARE ADJUSTED IN HYPERLINK (GWD Note - If change in FrontPage what the window does
// when it is opened, then FrontPage puts the following code back into the page. But it can be deleted and the program will
// rely upn this code. The following code does not change if change an option in "Open Browser Window" behavior.
function FP_openNewWindow(w,h,nav,loc,sts,menu,scroll,resize,name,url) {//v1.0 

 var windowProperties=''; if(nav==false) windowProperties+='toolbar=no,'; else
  windowProperties+='toolbar=yes,'; if(loc==false) windowProperties+='location=no,'; 
 else windowProperties+='location=yes,'; if(sts==false) windowProperties+='status=no,';
 else windowProperties+='status=yes,'; if(menu==false) windowProperties+='menubar=no,';
 else windowProperties+='menubar=yes,'; if(scroll==false) windowProperties+='scrollbars=no,';
 else windowProperties+='scrollbars=yes,'; if(resize==false) windowProperties+='resizable=no,';
 else windowProperties+='resizable=yes,'; if(w!="") windowProperties+='width='+w+',';
 if(h!="") windowProperties+='height='+h; if(windowProperties!="") { 
  if( windowProperties.charAt(windowProperties.length-1)==',') 
   windowProperties=windowProperties.substring(0,windowProperties.length-1); } 
 window.open(url,name,windowProperties);
}

// GWD POP-UP WINDOW FUNCTION - ADDED BY GWD FROM JOHN GHIDU AND MOVED BY GTG TO .JS FILE
function wopen(url, name, w, h) {
     // [This reserved space for toolbar, etc., if need this then delete this bracket comment and //]
     // w += 32; 
     // [This reserved space for toolbar, etc., if need this then delete this bracket comment and the //]      
     // h += 96; 
var win = window.open(url, name, 'width=' + w + ', height=' + h + ', location=no, menubar=no, status=no, toolbar=no, scrollbars=yes, resizable=yes');
     // Next line removed because it breaks the script (removed by jrg on 02/25/06)
     // win.resizeTo(w, h);
win.focus();
     }
-->
