function newsitewindow(siteURL) {
	_gaq.push(['_trackEvent', siteURL, 'newsite']);
	var leftpos = ((screen.width - 800)/2)
	siteURL = "new_site.php?URL=" + siteURL
	sitewindow = window.open(siteURL,'','height=600,width=800,scrollbars=yes,toolbar=no,resizable=yes,left='+leftpos+',top=0')
	sitewindow.focus()
}

function newarticlewindow(articleURL) {
	var leftpos = (((screen.width - 600)/2)-10)
	var toppos = ((screen.height - 600)/2)
	articlewindow = window.open(articleURL,'','height=600,width=600,scrollbars=yes,toolbar=no,resizable=yes,left='+leftpos+',top='+toppos+'')
	articlewindow.focus()
}

function newinfowindow(articleURL) {
	var leftpos = (((screen.width - 600)/2)-10)
	var toppos = ((screen.height - 400)/2)
	articlewindow = window.open(articleURL,'','height=250,width=600,scrollbars=yes,toolbar=no,resizable=yes,left='+leftpos+',top='+toppos+'')
	articlewindow.focus()
}
