//<!---

// this sets the default status in the browser window (bottom left)

function PopUpSlideshow(url) {
   winStats='toolbar=no,location=no,directories=no,menubar=no,'
   winStats+='scrollbars=no,width=443,height=480'
   if (navigator.appName.indexOf("Microsoft")>=0) {
      winStats+=',left=100,top=50'
    }else{
      winStats+=',screenX=100,screenY=50'
    }
   teaseWin=window.open(url,"",winStats)
}

function openBioWindow(theURL,winName,features) { //v2.0
	window.open(theURL,winName,features);
}

function popUp(URL, name, features) {
	window.open(URL, name, features);
}


//--->


