<!--
newWindow=null;

function closeWindow() {

	top.close();
	return false;

}

function MM_openBrWindow(theURL,winName,features) { //v2.0
	if(newWindow)
		self.close();

	newWindow = window.open(theURL,winName,features);
	return newWindow;
}

function killChildWindow(){
	if (document.newWindow){
		document.newWindow.close();
	}
}

function openWindowClosePrevious(theURL,winName,features) {
	if (newWindow && ! newWindow.closed) {
		newWindow.close();
	}

	newWindow = window.open(theURL,winName,features);
	return newWindow;
}

function gotoanchor(a) {
	location.hash=a;
}

function openNewWindow(url) {
  openWindowClosePrevious(url, "Title", "location=yes,status=yes,toolbar=yes,menubar=yes,scrollbars=yes,resizable=yes");
  newWindow.focus();
}
//-->
