<!--
function showhtml(html,x,y)
{       
  if (document.all)
    var xMax = screen.width, yMax = screen.height;
  else
    if (document.layers)
      var xMax = window.outerWidth, yMax = window.outerHeight;
    else
      var xMax = 640, yMax=480;
      var xx = (xMax - x)/2, yy = (yMax - y)/2;
      newWindow = window.open("","surveywin","scrollbars=no,toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,left="+xx+",top="+yy+",width="+x+",height="+y);
	  //newWindow.moveTo(xx,yy);
	  newWindow.focus();
	  newWindow.location.href=html;
}
//-->
