function navigatePath(filePath)
{
	try
	{
		var mainFrame = document.getElementById('ContentFrame');
		mainFrame.src = filePath;
		menuItem0.hide();
	}
	catch(e){}
}

function ob_os(e){
    //var os = e.parentNode.parentNode.parentNode.parentNode.parentNode.parentNode.firstChild.firstChild;
    var os = e.parentNode.parentNode.firstChild.firstChild;
    if (os != null) {
    if ((typeof os != "undefined") && (os.tagName == "IMG")) {
        var lensrc = (os.src.length - 8);
        var s = os.src.substr(lensrc, 8);
        if ((s == "inus.gif") || (s == "usik.gif") || (s == "us_l.gif") || (s == "ik_l.gif")) {
            //e.parentNode.parentNode.parentNode.parentNode.parentNode.parentNode.firstChild.firstChild.onclick();
            e.parentNode.parentNode.firstChild.firstChild.onclick();
        }
    }
    else {
        ob_os(e.parentNode);
    }
}}

function checkAll(bCheck)
{
	var checks = document.getElementsByTagName("input");
	for (var i=0; i<checks.length; i++)
	{
		try
		{
			if (checks[i].id != "IsEnabled")
			{
				checks[i].checked = bCheck;
			}
		}
		catch(e){}
	}
}

