// JavaScript Document

function reloadPage() {
	location.reload();
}

function getBrowserWidth() {
	if (document.all) return document.all.thisdoc.offsetWidth-21;
	else return self.innerWidth;
}

function getBrowserHeight() {
	if (document.all) return document.all.thisdoc.offsetHeight-0;
	else return self.innerHeight;
}

function openBrowserWindow(theURL,winName,features) { 
	window.open(theURL,winName,features);
}

function Popup(theURL,winName,features) { 
	window.open(theURL,winName,features);
}

function MM_jumpMenu(targ,selObj,restore){ 
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
