// <script language="JavaScript" type="text/javascript" src="scripts.js"></script>

function popup(url,detWidth,detHeight) {
leftPos = 40
topPos = 40
detWidth += 20
detHeight += 20
if (screen) {
	leftPos = screen.width * .1
	topPos = screen.height * .1
		}
detWindow = window.open(url,detWidth+"x"+detHeight,'width='+detWidth+',height='+detHeight+',left='+leftPos+',top='+topPos+',toolbar,location,scrollbars,resizable,status')
detWindow.focus()
}


