function popupImage(url, title)
{
	var win = window.open(baseurl + "portaldata/" + portalId + "/Tiers/PresentationLayer/HelperFunctions/ImageFrameset.aspx?url=" + url + "&title=" + title,"image",",scrollbars=no,resizable=no");
	win.focus();
}


function RedirectCategory(select)
{
	if (select.options[select.selectedIndex].value.indexOf('link_') > -1)
	{	
		window.open(select.options[select.selectedIndex].value.split('_')[1])
	}
}
