

function showMsg() {
	document.getElementById("flashContent").style.visibility="hidden";
    document.getElementById("msg").style.display = "block";
	//document.getElementById("msg").innerHTML = '<iframe src="msg.html" width="755" height="650" scrolling="no" marginheight="0" marginwidth="0" frameborder="0"></iframe>';
	//FB.Connect.showPermissionDialog("offline_access", onPermission, false, null);
	
}
function hideMsg() {
	document.getElementById("flashContent").style.visibility = "visible";
	document.getElementById("msg").style.display = "none";
	document.getElementById("msg").innerHTML = '';
	
}
