$(document).ready(function(){
	$("#mycontentprivacy").dialog({
		autoOpen:false,
		resizable:false,
		width: 600});
});
function showPrivacy() {
 	$("#mycontentprivacy").dialog("open");
}

$(document).ready(function(){
	$("#mymsg").dialog({
		autoOpen:true,
		resizable:false,
		modal:true,
		width: 500});
});

$(document).ready(function(){
	$("#showMessage").dialog({
		autoOpen:false,
		resizable:false,
		modal:true,
		width: 500});
});

function showMessage(message) {
	$("#Message").html(message);
 	$("#showMessage").dialog("open");
}



