var pricingWindow;

function openPricingWindow(jumpSection) {
	var pricingURL = 'pricing.php';
	
	if (jumpSection > '') pricingURL = pricingURL + '#' + jumpSection;
		
	if (!pricingWindow || pricingWindow.closed) {
		pricingWindow = window.open(pricingURL, 'pricingWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=yes,width=600,height=300');
		if (!pricingWindow.opener) {
			pricingWindow.opener = window
		}
	} else {
		// window's already open; bring to front
		pricingWindow.focus()
	}
	return false;
}
