// POPUP
//  Author:  Mitch Allen (c) 2003
// Program:  popup.js
function popup( obj ) { 
	with( obj.style ) {
		display = "block";
		position = "absolute";
	}
}

function unpop( obj ) { obj.style.display = "none"; }


// TOGGLE VISIBILITY
<!--
function toggle_visibility(id) {
var e = document.getElementById(id);
if(e.style.display == 'none')
e.style.display = 'block';
else
e.style.display = 'none';
}
//-->


// ONLOADS
var coName = "test name";
//function bodyUnload(){
//	alert("test");
//}

var onloads = new Array();
function bodyOnLoad() {
  for ( var i = 0 ; i < onloads.length ; i++ )
	 onloads[i]();
}
Event.observe(window, 'load', bodyOnLoad);
//showMenuContext()