function openWin(theURL, theWidth, theHeight) {
	OpenWindow=window.open(theURL,'OpenWindow','toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width='+theWidth+',height='+theHeight+',top=100,left=100,screenX=100,screenY=100');
	OpenWindow.focus();
}
