/* Pop-up function */
 function pop(url) {
leftPos = 0
topPos = 0
if (screen) {
	leftPos = screen.width * .1
	popWidth = screen.width * .85
	topPos = screen.height * .1
	popHeight = screen.height * .75 }
else {
	popWidth = 700
	popHeight = 400 }
popWindow = window.open(url,'popWin','width='+popWidth+',height='+popHeight+',left='+leftPos+',top='+topPos+',toolbar=yes,location=yes,scrollbars=yes')
popWindow.focus()
}


/* Pop up image */
function det(url,detWidth,detHeight) {
leftPos = 40
topPos = 40
detWidth += 30
detHeight += 30
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=no,location=no,scrollbars=no')
detWindow.focus()
}
