function _goto(id, page)
{	
	var hrefPrefix = "";
	
	if(top.location.href.indexOf("forums.prospero.com") != -1) hrefPrefix = "http://www.SonomaDiet.com";
	
	if (page != null)
	{	
		top.location.href = hrefPrefix + "/publicsite/index.aspx?puid=" + id + "&p=" + page;
	}
	else
	{	
		top.location.href = hrefPrefix + "/publicsite/index.aspx?puid=" + id;
	}
}


function _gotopop(id)
{
	var hrefPrefix = "";
	
	if(top.location.href.indexOf("forums.prospero.com") != -1) hrefPrefix = "http://www.SonomaDiet.com";

	myWin = window.open(hrefPrefix + "/publicsite/index.aspx?puid=" + id, 'myWin', 'toolbar=0,scrollbars=1,location=0,statusbar=1,menubar=0,resizable=1,width=640,height=715');
}

function _gotoprint(id)
{
	myWin = window.open("/publicsite/index.aspx?print=true&puid=" + id, 'myWin', 'toolbar=0,scrollbars=1,location=0,statusbar=1,menubar=0,resizable=1,width=640,height=715');
}


function ActiveNavItem(item) {
	if (item != "") {
		obj_link = document.getElementById(item + '_link');

		// Activate current nav item (unless item is not on the left nav)
		switch(item) {
			default:
				// Change in class depends on whether this is a subitem
				if (obj_link.className == "navigation_main_off") {
					obj_link.className='navigation_main_on';
				} else {
					obj_link.className='navigation_sub_on';
				}
			break;
		}
	}
}

function hp_HideAnnouncement()
{
	document.getElementById('hp_announcement_container').style.display = 'none';
}
