var IE6 = false
function modalBox(content, width, topM)
{    
    var topM=(topM!=undefined) ? topM : 200;
    if(!content){ $('#ntz_modal').remove(); $('#ntz_overlay').fadeOut(function(){$(this).remove();}); try{if(IE6){$('body').find('select').visibility('visible');}}catch(err){}; return false; }
    try{if(IE6){$('body').find('select').visibility('hidden');}}catch(err){};
    $('body').append('<div id="ntz_overlay"><\/div>');
    $('#ntz_overlay').css({ width:'100%', height:$(document).height(), position:'absolute', left:0, top:0, backgroundColor:'#000', zIndex:9990, opacity:0 }).fadeTo(200, 0.5).click(function(){modalBox()});
    $('body').append('<div id="ntz_modal"><\/div>');
    $('#ntz_modal').css({ width:width ? width : 408, position:'absolute', left:'50%', top:$(document).scrollTop()+topM, zIndex:9995, marginLeft: -(Math.ceil((width ? width : 300)/2)) }).append(content);
    $('#ntz_modal a:eq(0), #ntz_modal input, #ntz_modal textarea').focus();
    
    $(document).bind('scroll', function(){ $('#ntz_modal').css({top:$(document).scrollTop()+topM}); });
};
