//rollover swap technique.
function swapImage(imgName,imgURL){
	if (imgURL.length>0) {
    		document.images[imgName].src = imgURL;
    	}
}

// take a passed anchor and pop the detail based on the anchor's HREF
var detail_win = null;

function showDetail(anchor_obj) {
	if (anchor_obj.href == '') return;

	var win_width = 498;
	var win_height = 415;

//	if ( (detail_win == null) || (detail_win.closed) ) {
		detail_win = window.open(anchor_obj.href, 'detailWin', 'width=' + win_width + ',height=' + win_height + ',toolbars=no,scrolling=no,scrollbars=no');
//	}

	if (window.focus) {
		detail_win.focus();
	}

} // END: showDetail()

function ExtraWindow(){ window.open("config_pg1.asp", "MyWindow", "toolbar=no," + "menubar=no,scrollbars=no,resizable=no," + "width=498, height=415") }