<!--
var browser = 0;
if ((navigator.appName == "Netscape" && parseInt(navigator.appVersion) >= 3) || (navigator.appName == "Microsoft Internet Explorer" && parseInt(navigator.appVersion) >= 4))
	browser = 1;

if (browser)
{
	button_aagents_on = new Image();
	button_aagents_on.src = "images/button_aagents_on.gif";
	button_aagents_off = new Image();
	button_aagents_off.src = "images/button_aagents_off.gif";

	button_order_on = new Image();
	button_order_on.src = "images/button_order_on.gif";
	button_order_off = new Image();
	button_order_off.src = "images/button_order_off.gif";

	button_services_on = new Image();
	button_services_on.src = "images/button_services_on.gif";
	button_services_off = new Image();
	button_services_off.src = "images/button_services_off.gif";
}

function imageOn(imgName)
{
	if (browser)
		document[imgName].src=eval("button_" + imgName + "_on.src");
}

function imageOff(imgName)
{
	if (browser)
		document[imgName].src = eval("button_" + imgName + "_off.src");
}
function open_window(the_file_path, the_window_name, the_width, the_height, resizable, do_reposition, do_scroll) {
	if (the_window_name == '')	the_window_name		= 'Popup';
	if (the_width == '')		the_width			= '300';
	if (the_height == '')		the_height			= '300';
	if (resizable == '')		resizable			= 'no';
	if (do_scroll == '')		do_scroll			= 'no';
	var windowXY									= '';
	
	if (do_reposition != 'N') {
		if (window.screen) {
	    	var the_screenX = Math.floor((screen.availWidth-the_width)/2);
		    var the_screenY = Math.floor((screen.availHeight-the_height)/2);
			windowXY = ',screenX='+the_screenX+',screenY='+the_screenY+',left='+the_screenX+',top='+the_screenY;
		}
	}
	windowHandle = window.open('',the_window_name,'scrollbars='+do_scroll+',status=no,width='+the_width+',height='+the_height+',resizable='+resizable+windowXY)
	windowHandle.location.href = the_file_path;
	windowHandle.focus();
}

//-->
