function openWindow(theFile, theWin, theWidth, theHeight) {
	newWindow = window.open(theFile,theWin,'toolbar=no,location=no,status=no,menubar=yes,scrollbars=yes,resizable=yes,width='+theWidth+',height='+theHeight+',top=0,left=0');
	newWindow.focus();
}
