<!--
function newWindow(url, widthw, heightw, leftPos, topPos)
{
	
  //IE uses left,right NS uses screenX,Y
  if(topPos==null)
  {
    topPos=(screen.height-heightw)/2;
    if(leftPos==null)
    {
      leftPos=(screen.width-widthw)/2;
    }
  }  
  params = 'left='+leftPos + ',top='+topPos+',screenX='+leftPos+',screenY='+topPos+',height='+heightw+',width='+widthw+',innerHeight='+heightw+',innerWidth='+widthw;
	window.open(url, "_blank", params);
	return false;
}

function newWindowScroll(url, widthw, heightw, leftPos, topPos)
{
  //IE uses left,right NS uses screenX,Y
  if(topPos==null)
  {
    topPos=(screen.height-heightw)/2;
    if(leftPos==null)
    {
      leftPos=(screen.width-widthw)/2;
    }
  }  
  params = 'left='+leftPos + ',top='+topPos+',screenX='+leftPos+',screenY='+topPos+',height='+heightw+',width='+widthw+',innerHeight='+heightw+',innerWidth='+widthw+',scrollbars=1';
	window.open(url, "_blank", params);
	return false;
}

// -->