function getURL(strSection,width){

    var thisURL = document.location.href;
    thisURL = thisURL.substring(thisURL.lastIndexOf('/')+1,thisURL.length);

	if (thisURL.indexOf(strSection) >= 0){
		return ('<img src=/images/nav_' + strSection + '_on.gif border=0 width=' + width + ' height=15>');
	}
	else if (strSection=='information' && ((thisURL.indexOf('oga') >= 0) || (thisURL.indexOf('cdga') >= 0))){
		return ('<img src=/images/nav_information_on.gif border=0 width=' + width + ' height=15>');
	}
	else {
		return ('<img src=/images/nav_' + strSection + '.gif border=0 width=' + width + ' height=15>');	
	}
}

var unique = "&uniqueValueToPreventCaching=" + (new Date()).getTime();