function openWindow(url){
	popWindow = window.open(url, 'popWin', 'scrollbars=yes,width=550,height=500,left=20,top=20')
	popWindow.focus()
}
function openWindow_sm(url){
	popWindow = window.open(url, 'popWin', 'scrollbars=no,width=300,height=300,left=30,top=30')
	popWindow.focus()
}
function openWindowArgs(thePage, theTitle, theProp ){
	popWindow = window.open(thePage, theTitle, theProp)
	popWindow.focus()
	
}
