$(document).ready(function() {
		
		$('table.cal td').tooltip({ 
		    delay: 1,
		    showURL: false,
		    top: 2,
			left: 5,
		    bodyHandler: function() { 
		    	var val = $(this).attr('content');
		    	if (val != undefined && val != ' ') {
		    		return $("<div/>").html( val	 );
		    	}
		    } 
		});

});



function popup(url, name, width, height, menu, resize, status) {
	custompop(url, width, height, status, menu);
	return true;
}

function custompop(url, width, height, status, menu) {
   win = window.open(url, 'bmwin_popup', 'toolbar=no,location=no,directories=no,status=' + status +  ',menubar=' + menu + ',scrollbars=yes,resizable=yes,copyhistory=no,width=' + width + ',height=' + height);
   win.focus();
}
