function MM_openBrWindow(theURL,winName,features) { 
  window.open(theURL,winName,features);
}
function MM_openModalDialog(theURL,winName,features) { //v2.0
        OpenWindow = window.showModalDialog(theURL,winName,features);
        //OpenWindow.moveTo((screen.width-540)/2,(screen.height-200)/3)
    }
  function mOvr(src,clrOver) {
    if (!src.contains(event.fromElement)) {
	  src.bgColor = clrOver;
	}
  }
  function mOut(src,clrIn) {
	if (!src.contains(event.toElement)) {
	  src.bgColor = clrIn;
	}
  }
function Display(ID)
	{
		if( ID.style.display == "none" )
		{
			ID.style.display = "" ;
		}
		else
		{
			ID.style.display = "none" ;
		}
	}

function outliner()
{
    var child = document.all[event.srcElement.getAttribute("child",false)];
    if (null != child){
		if(child.className == "collapsed")
		{
			child.className = "expanded";
			return;
		}
		if(child.className == "expanded")
		{
			child.className = "collapsed";
			return;
		}
    }
}
function resizeWin(){
	
	window.resizeTo(screen.availWidth,screen.availHeight);
	//window.resizeTo(screen.width+100,screen.height+100);
	window.moveTo(0,0)
}
