<!-- Hide me from ye olde browsers
function convertLinks()
{
    //alert(location.host);
    //alert(location.hostname);
	for (var i = 0; i < document.links.length; i++) {
        posHOST = document.links[i].href.toLowerCase().indexOf(location.host.toLowerCase());
	    /*
        posJS = document.links[i].href.toLowerCase().indexOf("javascript:");
        posHTTP = document.links[i].href.toLowerCase().indexOf("http");
        posMAIL = document.links[i].href.toLowerCase().indexOf("mailto:");
        */
	   	if ( posHOST > -1) {
	   	//if ( (posJS == -1) && (posJS == -1) && (posJS == -1) ) {
	   	/*
            alert(document.links[i].href.toLowerCase());
            alert("posJS=" + posJS);
            alert("posHTTP=" + posHTTP);
            alert("posMAIL=" + posMAIL);
            */
	   	    posQ = document.links[i].href.indexOf("?");
	   	    p = "?";
	   	    if (posQ > -1) {
	     	    p = "&";
	     	}
    	    document.links[i].href = document.links[i].href + p + "view=R";
		}
	}
}

//convert links to 'ready to publish' links if view=R parameter exists
//alert(location.href);
posP = location.href.toLowerCase().indexOf("view=r");
if (posP > -1) convertLinks();

//set the down state for the current Level 1 menu
L1 = document.getElementById('ctl00_ctl00_ContentPlaceHolder1_FormView1_L1c');
//alert(L1);
if (L1 != null) {
    L1c = L1.value;
    //alert(L1c);
    if (L1c != "0") {
        navimg = document.getElementById("nav" + L1c);
        //alert(navimg.value);
        document.images["btn-" + L1c ].src = navimg.value; //'images/navigation/btn-' + L1c + '-over.gif';
        document.images["btn-" + L1c ].onmouseover = null;
        document.images["btn-" + L1c ].onmouseout = null;
    }
}

//-->
