$(function(){
	$(document.body).append('<div id="notification" class="window">\
	<div class="h_window"></div>\
	<div class="m_window">\
		<div class="c1">\
			<div class="c2">\
				<div class="window_container">\
					<table style="height: 100px;">\
						<tr>\
							<td id="notification_message" style="height: 100%;"></td>\
						</tr>\
					</table>\
				</div>\
				<div class="alert_ico"></div>\
			</div>\
			<button type="button" class="bt" onclick="close_notification();">Ok</button>\
		</div>\
	</div>\
	<div class="f_window"></div>\
	<!--[if lte IE 6.5]><iframe></iframe><![endif]-->\
</div>');
});

function show_notification (c){
	$('#notification_message').text(c);
	$('#notification').show();
}

function close_notification (){
	$('#notification').hide();
	$('#notification_message').text('');
}
