/* 
	created to house functions that were being replicated elsewhere
	storing centralized to get caching and other benefits
*/

function onTop() {
	window.focus();
}

function findIt() {
//delay close of window for NS compatibility
setTimeout("window.close()",3000);
}

function redir(uri) {
		opener.location = uri;
		self.close();
}
