/*	Astrology section Javascript */

function newWin()
{
	var winHeight = 200;
	var winWidth = 510;
	var bRet = false;
	oFrm = document.forms["subscribeForm"];
	oWin = window.open("", "windowName", "height=" + winHeight + ",width=" + winWidth + ",toolbar=no" );
	oFrm.target="windowName";
	bRet = true;
	return oWin;
}
function popUp(url, winWidth, winHeight)
{
	var bRet = false;
	oFrm = document.forms["subscribeForm"];
	oWin = window.open(url, "FAQ", "height=" + winHeight + ",width=" + winWidth + ",toolbar=no" );
	oFrm.target="FAQ";
	bRet = true;
	return bRet;
}