function goTo(num)
{
	if(num==1)
	{
		document.location.href=htmlRoot+"/website/services/index.php";
	}
	if(num==2)
	{
		document.location.href=htmlRoot+"/website/subscribe/index.php";
	}
	if(num==3)
	{
		document.location.href=htmlRoot+"/website/subscribe/start.php";
	}
	if(num==4)
	{
		document.location.href=htmlRoot+"/website/subscribe/start.php";
	}
}
function openDiv(oDiv)
{
	var openThisDiv=document.getElementById(oDiv);
	
	if((openThisDiv.style.display=="block"))
	{
		openThisDiv.style.display="none";
	}
	else if((openThisDiv.style.display==""))
	{
		openThisDiv.style.display="block";
	}
	else
	{
		openThisDiv.style.display="block";
	}
}
function closeDiv(oDiv)
{
	var openThisDiv=document.getElementById(oDiv);
	openThisDiv.style.display="none";
}
