function popUp(url) {
popWindow = window.open(url,'popWin','width=500,height=400,toolbar=no,location=no,scrollbars=no')
popWindow.focus()
}

function pop(url) {
popWindow = window.open(url,'popWin','width=600,height=440,left=119,top=60,resizable=no,toolbar=no,location-no,scrollbars=yes')
popWindow.focus()
}

function popUp2(url) {
leftPos = 0
topPos = 0
if (screen) {
	leftPos = screen.width * .1
	popWidth = screen.width * .85
	topPos = screen.height * .1
	popHeight = screen.height * .8 }
else {
	popWidth = 700
	popHeight = 400 }
popWindow = window.open(url,'popupWin','width='+popWidth+',height='+popHeight+',left='+leftPos+',top='+topPos+',toolbar=no,location-no,scrollbars=yes')
popWindow.focus()
}

