<!--
	function getEl(element){
		return eval("document.getElementById(element)");
	}

	function popup(name,file,width,height,scrollbar,resizable,modal) {
		wLeft=(screen.width)?(screen.width-width)/2:100;
		wTop=(screen.height)?(screen.height-height)/2:100;
		childWindow=window.open(file,name,"modal=yes,width="+width+"px,height="+height+"px,scrollbars="+scrollbar+",resizable="+resizable+",top="+wTop+",left="+wLeft);
		if (childWindow.opener == null) childWindow.opener = self;
			childWindow.focus();
	}

	function resize(el) {
		var w=document.getElementById(el).width;
		var h=document.getElementById(el).height;
		if( window.innerWidth ) { mW = 8; mH = 80; } else { mW = 0; mH = 0 }
		w=w+mW; h=h+mH;
		window.resizeTo( w,h );

		/*var mW = 0, mH = 0, d = window.document.documentElement, b = window.document.body;
		if( window.innerWidth ) { mW = window.innerWidth; mH = window.innerHeight; }
		else if( d && d.clientWidth ) { mW = d.clientWidth; mH = d.clientHeight; }
		else if( b && b.clientWidth ) { mW = b.clientWidth; mH = b.clientHeight; }
		//Opera 6- adds on 16 pixels for the non-existent scrollbar
		if( window.opera && !document.childNodes ) { mW += 16; }
		window.resizeTo( w + ((w)-mW),h+((h)-mH) );*/
	}


//-->