function popIt(url,width, height,scrollbars){
            if(!width) width = "295";
            if(!height) height = "500";
            if(!scrollbars) scrollbars = 0;

            var windowString = 'width=' + width + ',height=' + height + ',resizable=0,status=0,toolbar=no,scrollbars=' + scrollbars + ',scrolling=auto';
            var popItWindow = window.open(url, 'popIt', windowString);
}

window.addEvent('domready', function(){
	window.addEvent('scroll', function(){
	
	});
	
	$$('#ModuleMenu a.WorkBt').each(function(a){
		a.addEvents({
			'click': function(event){
				event.preventDefault();
				$('TextContent').dissolve();
				(function(){ document.location.href = a.get('href'); }).delay(500);
			}
		});
	})
	
	
});
