function ShowPrivacyPopup(popupURL) 
{
  // open the popup window
  
    var popup = window.open(popupURL,"PrivacyPolicy",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=600,height=525,left=175,top=0');
  // set the opener if it's not already set.  it's set automatically
  // in netscape 3.0+ and ie 3.0+.
  if( navigator.appName.substring(0,8) == "Netscape" ) {
    popup.location = popupURL;
  }
}

function ShowBirdCamPopup(popupURL) 
{
  // open the popup window
  
    var popup = window.open(popupURL,"BirdCam",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=325,height=435,left=175,top=50');
  // set the opener if it's not already set.  it's set automatically
  // in netscape 3.0+ and ie 3.0+.
  if( navigator.appName.substring(0,8) == "Netscape" ) {
    popup.location = popupURL;
  }
}

function ShowReminderPopup(popupURL) 
{
  // open the popup window
  
    var popup = window.open(popupURL,"Reminder",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=445,height=495,left=275,top=25');
  // set the opener if it's not already set.  it's set automatically
  // in netscape 3.0+ and ie 3.0+.
  if( navigator.appName.substring(0,8) == "Netscape" ) {
    popup.location = popupURL;
  }
}

function ShowPopup(popupURL, pleft, ptop, pwidth, pheight) 
{
  // open the popup window
  
var popup = window.open(popupURL,"PopUp",'toolbar=0, location=0,directories=0, status=0,menubar=0,scrollbars=1,resizable=1, width=' + (pwidth + 50) + ', height=' + (pheight + 70) + ', left=' + pleft + ', top=' + ptop);
  // set the opener if it's not already set.  it's set automatically
  // in netscape 3.0+ and ie 3.0+.
  
  if (window.focus) {popup.focus()}
  
  popup.window.resizeTo(pwidth + 50, pheight + 130)
  
  if( navigator.appName.substring(0,8) == "Netscape" ) {
    popup.location = popupURL;
  }
}
