function NewMessageForm(pid,ForumId)
{
	var sVirtualUrl = "/Forum/Modal/AddMessage.aspx?_pid="+pid + "&ForumId=" + ForumId;
	var sCoverUrl = VIRTUAL_DIRECTORY + "/Forum/Modal/AddMessageCoverPage.aspx";
	var sProperties = "status:no;toolbar=no;location=no;directories=no;menubar=no;resizable=0;copyhistory=no;center:yes;help:no;dialogHeight:300px;dialogWidth:305px;";
	
	/*var ftr = "toolbar=no,location=no,status=no,direcories=no,width=300,height=300,top=50,left=100"
	win = window.open(url,"message", ftr)*/
	//retVal = OpenModalWindow(VIRTUAL_DIRECTORY +url ,300,300);
	vArguments = VIRTUAL_DIRECTORY + sVirtualUrl;
	
	var sResult = window.showModalDialog(sCoverUrl,vArguments,sProperties);
	
	if (sResult == "1")
		document.location.href = document.location.href;
}

