//JQuery init code
$(document).ready(function(){
	$('body').append('<div id="ShowNotice"><iframe id="shownoticeframe" src="" frameborder="0" height="" width="550" marginheight="0" marginwidth="0" align="left"></iframe></div>');
	// init change pw dialog
	$('#ShowNotice').dialog( {
		autoOpen: false,
		height: 'auto',
		width: 575,
		modal: true,
		resizable: false,
		position: 'top',
		show: "slideDown(1000)",
		hide: 'slideUp(1000)',
		zIndex: 50000
	})
});

function show_notice(webpage, var_title, var_height) {
	$("#ShowNotice>#shownoticeframe").attr("src", webpage);
	$("#ShowNotice>#shownoticeframe").attr("height", var_height);
	$('#ShowNotice').dialog("option", "title", var_title);
	$('#ShowNotice').dialog('open')
}

