// JavaScript Document
<!--
var newwin = new Object();
newwin.closed = true;

function NewWindow(url, winname, w, h, scroll, resize) {
var op  = (window.opera?1:0);
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
if (!newwin.closed) newwin.close();
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable='+resize+',status=no'//,location=yes,directories=yes,status=yes,menubar=yes,toolbar=yes';
newwin = window.open(url, winname, winprops)
if (parseInt(navigator.appVersion) >= 4) { newwin.window.focus(); }
}

function exit() {
if (!newwin.closed) newwin.close();
}

function popPDF(filename){
NewWindow(filename,'popup','400','500','no','yes');return false;
}
function poo(){
	alert('what!');
}
// set status message on mouseover
function describe(text) {
	window.status=(text); 
	return true; 
}
// clear status message on mouseout
function clearstatus() {
	window.status=""; 
}

// set mouseover href url 
function goURL(url) {
document.location.href = 'http://' + url;
}
//-->