<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function openWindowWide(url, name) {
  popupWin = window.open(url, name, 'width=800,height=300,left=50,top=50,scrollbars=yes,resizable=yes,menu=no')
}

var newwindow = '';

function popitup(url) {
	if (!newwindow.closed && newwindow.location) {
		newwindow.location.href = url;
	}
	else {
		newwindow=window.open(url,'Invsco','scrollbars=no,resizable=no,menu=no,width=800,height=600,top=25,left=300');
		if (!newwindow.opener) newwindow.opener = self;
	}
	if (window.focus) {newwindow.focus()}
	return false;
}

//-->