var IE6 = false /*@cc_on || @_jscript_version < 5.7 @*/;
function modalBox(content, width) {
	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	:	'#000000',
		zIndex		:	9990,
		opacity		:	0
	}).fadeTo(700, 0.90);
	$('body').append('<div id="ntz_modal"></div>');
	$('#ntz_modal').css({
		width		:	width ? width : 400,
		position	:	'absolute',
		left		:	'50%',
		top			:	'15%',
		zIndex		:	9995,
		marginLeft	:	-(Math.ceil((width ? width : 800)/2))
	}).append(content);
	$('*').blur();
	$('#ntz_modal a:eq(0), #ntz_modal input, #ntz_modal textarea').focus();
	$(document).bind('scroll', function(){
		$('#ntz_modal').css({
			top:$(document).scrollTop()
		});
	});
};