<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function openHeadlines(url, name) {
  popupWin = window.open(url, name, 'width=700,height=700,left=50,top=50,Toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes')
}

var newwindow = '';

function popitup(url) {
	if (!newwindow.closed && newwindow.location) {
		newwindow.location.href = url;
	}
	else {
		newwindow=window.open(url,'International','scrollbars=yes,resizable=yes,menu=no,width=600,height=700,top=25,left=50');
		if (!newwindow.opener) newwindow.opener = self;
	}
	if (window.focus) {newwindow.focus()}
	return false;
}
//-->