﻿/*
 * system.etrack1.com - (c) 2010 Indicia Danmark A/S
 */

function redirectUser(url)
{
	try {
		if (navigator.userAgent.indexOf('MSIE') == -1) {
			window.location = url;
		} else {
			window.top.navigate(url);
		}
	}
	catch(e)
	{
		window.open(url, 'ContactFormPopup', 'dependant=yes,toolbar=no,status=yes,menubar=no,resizable=yes,scrollbars=yes', true);
	}
}

function showDesc(ctrl)
{
	var catID = $(ctrl).attr("CatID");
	var p = $(ctrl).position();
	
	var s;
	s = ".catdesc[catid='" + catID +"']";
	$(s).css("left", (p.left + 40) + "px").css("top", (p.top + 20)  + "px").show();
}
function hideDesc(ctrl)
{
	var catID = $(ctrl).attr("CatID");
	var s;
	s = ".catdesc[catid='" + catID +"']";
	$(s).hide();
}