
function openSmallWin(url, myWidth, myHeight){
myWindow = window.open( url, "theWindow", "toolbar=no,menubar=no,scrollbars=yes,resizable=yes,status=yes,location=no,width=" + myWidth + ",height=" + myHeight);
myWindow.moveTo(10,10);
myWindow.focus();
}
function openWin(url, myWidth, myHeight){
   myWindow = window.open( url, "theWindow", "toolbar=no,menubar=yes,scrollbars=yes,resizable=yes,status=no,location=no,width=" + myWidth + ",height=" + myHeight);
   myWindow.focus();
}

<!--
function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
// -->
//ROLLOVER CODE////////////////////////////////////
var imgPath = '';

function imgToggle(imgObjectName, imgObjectState) {
    imgObject = new Object();
    imgObject = imgObjectName;
    imgObject.src = imgPath + imgObjectState;
}
////////////////////////////////////////////////////
// code for archive links

function sprout_story(url) {

        popWindow = window.open(url,"feature","toolbar=yes,location=yes,directories=yes,status=no,scrollbars=yes,resizable=yes,copyhistory=yes,width=480,height=500");

        }
// code for press release pop ups
function portPop(URL,width,height,scroll) {
    if (!window.bWindow) {
        // has not yet been defined
        bWindow = window.open(URL,'Chart','width= '+ width +',height=' + height +',resizable=yes,location=yes, menubar=yes, top=0,left=0,scrollbars=' + scroll + ' ');
    }
    else {
        // has been defined
        if (!bWindow.closed) {
            // still open
			bWindow.focus(); bWindow.location = URL;
        }
        else {
            bWindow = window.open(URL,'Chart','width= '+ width +',height=' + height +', resizable=yes,location=yes, menubar=yes,top=0,left=0,scrollbars=' + scroll + ' ');
        }
    }
}

// code for new windows
function new_window(url) {
  window.open(url, 'newwindow', 'width=800,height=550,toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes'); 
  return false;
}
// code for pop ups
function popup(url) {
  win = window.open(url, 'popupwindow', 'width=410,height=450,top=0,left=0,resizable=yes,menubar=yes,scrollbars=yes'); 
  win.focus()
  return false;
}
// code for newsletterarchive
function popup_newsletter(url) {
  win = window.open(url, 'popupwindow', 'width=480,height=500,top=0,left=0,resizable=yes,menubar=yes,scrollbars=yes'); 
  win.focus()
  return false;
}
