	function winOpen(strID) {
		window.open('about:blank',strID,'toolbar=no,location=no,scrolling=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,width=400,height=400,top=20,left=20');
	}
	function runFlash( strSWF, intW, intH ) {
		AC_FL_RunContent(
			'src', strSWF,
			'width', intW, 'height', intH,
			'type', 'application/x-shockwave-flash',
			'codebase', 'http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab',
			'pluginspage', 'http://www.adobe.com/go/getflashplayer'
		);
	}
	function hideDiv(cID) {
		var d = document.getElementById(cID);
		d.style.display = 'none';
	}
	function showDiv(cID) {
		var d = document.getElementById(cID);
		d.style.display = '';
	}
	function togDiv(cID) {
		var d = document.getElementById(cID);
		if( d.style.display=='none' ) showDiv(cID);
		else hideDiv(cID);
	}
	function showDivs( cID, nID ) {
		var i = 1;
		while( d = document.getElementById(cID+i) ) {
			if( d ) d.style.display = (nID==i) ? "" : 'none';
			i++;
		}
	}
	function go(cURL) { var w = window.open(cURL,"_blank"); w.focus(); }
