public SPWeb GetPersonalWeb(string strAccount)
{
string strUrl = "http://site:9000/";
SPSite spSite = new SPSite(strUrl);
ServerContext serverContext = ServerContext.GetContext(spSite);
UserProfileManager userProfileManager = new UserProfileManager(serverContext);
UserProfile userProfile = userProfileManager.GetUserProfile(strAccount);
SPSite mySite = userProfile.PersonalSite;
return mySite.OpenWeb();
}