function goToPage(width,height,page) {
	var scrWidth=width;
	var scrHeight=height;
	//	11 pixels is for the vertical scrollbar on the right hand side of the window
	var xPos=(screen.availWidth-scrWidth-11);
	var yPos=0;
	var options="resizable=0,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,top="+yPos+",left="+xPos+",width="+scrWidth+",height="+scrHeight;
	newWindow=window.open(page,'popupWindow',options);
	newWindow.focus();
}
