function DeleteNews(ID) {
    $.get("newsdel.php",{
	ID: ID
    });
    $("#News"+ID).fadeOut('normal');
}

$(document).ready(function() {
    var contentheight=($('#content').height())-90;
    var rightbarheight=$('#rightbar').height();
    if ( rightbarheight < contentheight ) {
	$('#rightbar').css('height',contentheight+"px");
    }
});