<!--
var currentMenu ="";
var hitMenu ="";
var closeImg = "";

function MT_menu(name, state){
	if(currentMenu.charAt(1) != name.charAt(1) && hitMenu.charAt(1) != name.charAt(1)){
		document.images[name].src = '/images/gifs/button_'+state+'.gif';
	}
}
function closeMenu(id){
	var subMenu = document.getElementById(id).style;
	subMenu.display = 'none';
	subMenu.overflow = 'hidden';
	subMenu.height = '0px';
	subMenu.position = 'absolute';
}
function openMenu(id){
	var subMenu = document.getElementById(id).style;
	subMenu.display = 'block';
	subMenu.overflow = 'visible';
	subMenu.height = 'auto';
	subMenu.position = 'relative';
}
function openClose(id){
	if(hitMenu.charAt(1) != id.charAt(1)){
		if (currentMenu != "" && currentMenu != id){
			closeMenu(currentMenu);
			closeImg = 'i'+currentMenu.charAt(1);
			currentMenu = id;
			MT_menu(closeImg,'normal');
			openMenu(id);
		} else if (currentMenu == ""){	
			openMenu(id);
			currentMenu = id;
		}else if (currentMenu == id){
			closeMenu(id);
			currentMenu = "";
		}
	}
}

//***************************************************//
// pop window stuff
//***************************************************//

var newWindow = null;

function closeWin(){
 if (newWindow != null){
 if(!newWindow.closed)
  newWindow.close();
 }
}

function popUpWin(url, type, strWidth, strHeight){
 closeWin();
 if (type == "fullScreen"){
  strWidth = screen.availWidth - 10;
  strHeight = screen.availHeight - 160;
 }

 var tools="";
 if (type == "standard" || type == "fullScreen") tools = " resizable,toolbar=yes,location=yes,scrollbars=yes,menubar=yes,width="+strWidth+",height="+strHeight+",top=0,left=0";
 if (type == "console") tools = " resizable,toolbar=no,location=no,scrollbars=no,width="+strWidth+",height="+strHeight+",left=0,top=0";

 newWindow = window.open(url, 'newWin', tools);
 newWindow.focus();
}
//-->