// JavaScript Document
// FRAMESAVER SCRIPT

function stopDef(e) {
	if (e &&e.preventDefault) e.preventDefault();
	else if (window.event && window.event.returnValue)
	window.eventReturnValue = false;
}




window.onload = function() {
	
    var anchorElement = document.getElementById('BackToAgendaLB');
	anchorElement.style.display = 'none';
	
	anchorElement.onclick = function() {
		
		if(!e) var e = window.event;
		
		//parent.$.fn.colorbox.close();
		this.style.display = 'none';
		//window.close();
		
		//e.cancelBubble is supported by IE - this will kill the bubbling process.
		e.cancelBubble = true;
		e.returnValue = false;
	
		//e.stopPropagation works only in Firefox.
		if (e.stopPropagation) {
			e.stopPropagation();
			e.preventDefault();
		}
    }        
} 

// change back link

