<!--
  var windowIndex = 0;
  function newWindow(popupwindow, windowwidth, windowheight){
    var childWidth = eval(windowwidth);
    var childHeight = eval(windowheight);
    if((!childWidth) || (!childHeight)){
	childWidth = 740;
        childHeight = 520;
    }
    if(navigator.appName == "Netscape"){
        childHeight += 30;
    }
    var xPos = (screen.width/2) - (childWidth/2);
    var yPos = (screen.height/2) - (childHeight/2);
    var features = 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=auto,resizable=yes';
    var dimension = "";
    if(document.all){
	if(childHeight > 540)
	{
	  childHeight = 540;
	}
        dimension= ",left="+xPos+",top="+yPos+",width="+childWidth+",height="+childHeight;
    }
    else{
	if(childHeight > 540)
	{
	  childHeight = 540;
	}
	dimension= ",left="+xPos+",top="+yPos+",outerWidth="+childWidth+",outerHeight="+childHeight;
    }
    features = features+dimension;
    //to make a new window popped up separately from the current window (for IE)
    var newDemo;
    if ( opener ) {
    	newDemo = window.open(popupwindow, opener.windowIndex, features);
    }
    else {
    	newDemo = window.open(popupwindow, windowIndex, features);
    }
    newDemo.opener = self;
    if(document.all){
      newDemo.resizeTo(childWidth, childHeight + 26);
    }
    newDemo.focus();
    windowIndex++;
  }
//-->

<!--
  var windowCount= 100;
  function newScrollWindow(popupwindow, windowwidth, windowheight){
    var childWidth = eval(windowwidth);
    var childHeight = eval(windowheight);
    if((!childWidth) || (!childHeight)){
	childWidth = 740;
        childHeight = 520;
    }
    if(navigator.appName == "Netscape"){
        childHeight += 30;
    }
    var xPos = (screen.width/2) - (childWidth/2);
    var yPos = (screen.height/2) - (childHeight/2);
    var features = 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes';
    var dimension = "";
    if(document.all){
      if(childHeight > 540)
      {
	childHeight = 540;
      }
      dimension= ",left="+xPos+",top="+yPos+",width="+childWidth+",height="+childHeight;
    }
    else{
      if(childHeight > 540)
      {
	childHeight = 540;
      }
      dimension= ",left="+xPos+",top="+yPos+",outerWidth="+childWidth+",outerHeight="+childHeight;
    }
    features = features+dimension;
    //to make a new window popped up separately from the current window (for IE)
    var newScroll;
    if ( opener ) {
    	newScroll = window.open(popupwindow, opener.windowCount, features);
    }
    else {
    	newScroll = window.open(popupwindow, windowCount, features);
    }
    newScroll.opener = self;
    if(document.all){
      newScroll.resizeTo(childWidth + 12, childHeight + 26);
    }
    newScroll.focus();
    windowCount--;
  }
//-->
