// lib/global.js
// Andrew J. Miller
// ses 2006
// 2006-5-1
// Location for global javascripts
	if(top.location != self.location){
		top.location = self.location
	}
  
	function OpenInNewWindow(el)
	{
		el.target = "_blank";
		return true;
		
//		window.open(el.href);
//		return false;
	}

