<!--  limitedWin JavaScript

function limitedWin(width, height, url)
{
  var name="LimitedWin";
  LimitedWin=window.open(url,name,"dependent=yes,height="+height+",resizable=yes,scrollbars=yes,menubar=0,location=0,toolbar=0,directories=0,width="+width+",top=0,left=0");  
  LimitedWin.focus();
}

-->

