<!--
  var theWindow
     if (isMac && IE){
     wWidth-=15;
     wHeight-=15;
         }
   function getLeftOffset(width){
       if(isNS  && !isMac){
       return (screen.width-window.outerWidth)/2;
       }else{
       return (screen.width-width)/2-4;
       }
  }
  function getTopOffset(height){
	if(isNS && !isMac){
	return (screen.height-window.outerHeight)/2;
	}else{
	return (screen.height-height)/2-70;
	}
  }
  function openWindow(whichMovie,windowName,width,height,sb){
	scrollbars = (typeof sb == "undefined") ? "yes" : "no";
	if(width && height){
	wWidth = width;
	wHeight = height;
	}
	var leftOffset = getLeftOffset(wWidth);
	var topOffset = getTopOffset(wHeight)
	theWindow = window.open(whichMovie,windowName,"left="+ leftOffset +",top=" + topOffset + ",resizable=no,toolbar=no,scrollbars="+scrollbars+",width="+wWidth+",height="+wHeight);
	centerWindowInScreen(theWindow,width,height);
	theWindow.focus();
  }
  function centerWindowInScreen(whichWindow,width,height){
		screenWidth = window.screen.availWidth;
		screenHeight = window.screen.availHeight;
		leftMargin = (screenWidth-width)/2;
		topMargin = (screenHeight - height)/2;
		whichWindow.moveTo(leftMargin,topMargin);
  }

// -->
