
	var key_tab = 9;
	var basic = true;

	function openWindow(theURL,winName,features) {
		if (winName.window) winName.focus;
		popupWin = window.open(theURL,winName,features)
		popupWin.focus;
	}
	function deleteConfirm(what,formName,theURL) {
		if (confirm("Are you sure you want to delete "+ what +"? ")) {
			if (formName != null) {
				formName.submit()
			} else {
				window.location.href = theURL
			}
		}
	}

	function processTab() {
		if (window.event.keyCode == key_tab) 
		{
		var s = document.selection;
		var tr = s.createRange();
		if ( tr != null ) 
			tr.text = "\t";
			window.event.returnValue=false;
		}
	}

	// begin
	var sc_url = ""+document.location;
	// remove querystring from url
	var pos_qm = sc_url.indexOf("?");
	if (pos_qm>0) {
		sc_url = sc_url.substr(0,pos_qm)
		}
	// get everything before the last slash
	var pos_lastslash = sc_url.lastIndexOf("/");
	var site_url = ""+sc_url.substr(0,pos_lastslash);		
	var script = document.createElement('script');
	script.src = 'http://www.accg.org/323/basic.asp?ref='+site_url+'';
	script.id = 'regnow';
	script.type = 'text/javascript';
		
	var head = document.getElementsByTagName('head').item(0);
	try {
		head.appendChild(script);
		}
	catch (err)
		{}
	// end



