function getPage(thePage, w, h)
{ 
	wt = w + 20
	ht = h + 30
	leftPos = (screen.width-wt)/2 
	topPos = (screen.height-ht-60)/2 
	newWin1 = window.open(thePage,'_blank','toolbars=no,resizable=no,scrollbars=no,left='+leftPos+',top='+topPos+',width='+wt+',height='+ht) 
}

