function openPager(newLoc, newWidth, newHeight) {
	  
	    newWin = open("",newLoc,"scrollbars=no,resizable=no,status=no,height=" + newHeight + ",width=" + newWidth);
		newWin.resizeTo(newWidth,newHeight);
		newWin.focus();
}