function popupCenteredWindow(sUrl, lWidth, lHeight, sName, bScroll, bStatus){
	//	sURL	(URL of the page to open)
	//	lWidth	(width of the popup)
	//	lHeight	(height of the popup)
	//	sName	(name given to the window)
	//	bScroll	(allow scroll bars [yes|no|1|0])
	//	bStatus	(allow status bar [yes|no|1|0])
	lLeft = (window.screen.width/2) - ((lWidth/2) + 10); //half the screen width minus half the new window width (plus 5 pixel borders).
	lTop = (window.screen.height/2) - ((lHeight/2) + 30); //half the screen height minus half the new window height (plus title and status bars).
	newWin = window.open(sUrl, sName, "height=" + lHeight + ", width=" + lWidth + ", left=" + lLeft + ", top=" + lTop + ", screenX=" + lLeft + ", screenY=" + lTop + ", scrollbars=" + bScroll + ", status=" + bStatus);
	newWin.focus();
}


function Subscribe(){
	var sURL = '/signup.asp?email='
	popupCenteredWindow(sURL ,400,400,'SGSignupWnd',0,0);
	}
	
function onDisplayDetails(){
	if(typeof document.getElementById('prodDetail') !='undefined'){
		if(document.getElementById('prodDetail').style.display=='none')
			document.getElementById('prodDetail').style.display = 'inline';
		else
			document.getElementById('prodDetail').style.display = 'none';
	}
}