function jumppage(sel) 
{
  var i = sel.selectedIndex
  self.location.href = sel.options[i].value
}

function openGalleryWindow(url) {
	if (document.all)
		var xMax = screen.width, yMax = screen.height;
	else
		if (document.layers)
			var xMax = window.outerWidth, yMax = window.outerHeight;
		else
			var xMax = 800, yMax=600;
	var xOffset = (xMax - 200)/2, yOffset = (yMax - 200)/2;
	var xOffset = 100, yOffset = 100;

var popup = null;
  // browser detect loads differently sized window for netscape 3.x
  if (navigator.appName=="Netscape" && parseInt(navigator.appVersion)<=3) {  
popup = window.open(url,'new_page','width=700,height=535,screenX='+xOffset+',screenY='+yOffset+',top='+yOffset+',left='+xOffset+',scrollbars=auto,toolbars=no,menubar=no,resizable=yes')
//    popup = window.open(url,'new','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=611,height=225');
  } else {
popup = window.open(url,'new_page','width=700,height=535,screenX='+xOffset+',screenY='+yOffset+',top='+yOffset+',left='+xOffset+',scrollbars=auto,toolbars=no,menubar=no,resizable=yes')
//    popup = window.open(url,'new','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=593,height=205');
  }

  if(popup != null) {
    popup.location = url;
    if( navigator.appName.substring(0,8) == "Netscape" ) {
      popup.location = url;
      popup.opener = self;
    }
  }
}
//	popupWin = window.open(url,'new_page','width=700,height=535,screenX='+xOffset+',screenY='+yOffset+',top='+yOffset+',left='+xOffset+',scrollbars=auto,toolbars=no,menubar=no,resizable=yes')
//}
