function testForEnter() 
{    
	if (event.keyCode == 13) 
	{        
		event.cancelBubble = true;
		event.returnValue = false;
     }
} 
function color_on(obj,color) {
	obj.style.backgroundColor = color;
	obj.className='SideMenuLink';
}

function color_off(obj,color) {
	obj.style.backgroundColor = color;
	obj.className='SideMenuLink';
}
function main_toggle(obj,color) {
	obj.style.backgroundColor = color;
}
function toggle_on(obj,color) {
	obj.style.backgroundColor = color;
	obj.style.cursor = 'hand';
}

function toggle_off(obj,color) {
	obj.style.backgroundColor = color;
	obj.style.cursor = 'default';
}
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}