function setVisible(id, isVisible) {

  var e = document.getElementById(id);

  if(isVisible) {

    e.style.display = "";

  }

  else {

    e.style.display = "none";

  }

}

  

function setHighlight(row, isHighlighted) {

  if(isHighlighted) {

    row.style.backgroundColor = "#f4cb97";

    row.getElementsByTagName("a")[0].style.color = "#508ab2";

  }

  else {

    row.style.backgroundColor = "#f7a235";

    row.getElementsByTagName("a")[0].style.color = "white";

  }

}
/*
function mainPage(){
	try{
		window.attachEvent('onload', function(){ 
			document.getElementById('br_corner').style.marginTop = '10px'; 
		});
	}catch(e){
	}
}
function contentPage(s){
	obj = document.getElementById('br_corner');
	try{
		window.attachEvent('onload', function(){ 
			obj.style.marginTop = '0px'; 
			obj.style.marginTop = '2px'; 
		});
	}catch(e){
		switch(s){
			case 'services':
				obj.style.marginTop = '1px'; 
			break;
			case 'about':
				obj.style.marginTop = '5px'; 
			break;
			case 'forum':
				obj.style.marginTop = '5px'; 
			break;
			case 'member':
				obj.style.marginTop = '5px'; 
			break;
		}
	}
}
*/
