function RedirectTo(link)
{
	if(link.indexOf("..newwin") > -1)
	{
		var	target = link.substring(0, link.length - 8);
		//alert(target);
		var newWindow = window.open(target, '_blank'); 
		newWindow.focus(); 
	}
	else
	{
		window.location = link;
	}
}