<!-- Begin

//creates main information popups
function popup(pageURL) {
var popupwin = null;
popupwin = window.open(pageURL,'popupwin','toolbar=no,status=yes,scrollbars=no,location=no,menubar=no,directories=no,resizable=yes,width=510,height=550');
popupwin.focus();
}



//opens and focuses the external link window
function doFocus(where) {
	var theWin = window.open(where,"newExt");
	theWin.focus();
}//end do focus

