	/**
		ユーザ情報
	*/
	function userDetail ( args ) {
		//UID
		this.uid		= args.uid;
		uid 			= this.uid;

		//ターゲットフレーム
		this.target		= '#userDetail';

		//開閉ステータス
		this.statusName 	= 'userDetailStatus';
		this.status		= UtlStr.cnvStringBoolean( $.cookie( this.statusName  ) || true );

		this.title		= 'ユーザープロフィール';

		//XML
		this.xmlFile		= '/feed/userDetail.php?format=j&uid=' + uid;
//		this.xmlFile		= '/feed/userDetail.php?format=j&uid=' + uid + '&cache=' + (new Date()).getTime();
		//XML読み込み
		var item = { url : this.xmlFile, dataType : "JSONP" };

		var myData = utl.getDataWithAjax( item );
		myData = eval( 'json=' + myData );

		var target 		= this.target;

		title		= myData.channel.item.title;
		description	= UtlStr.urlAutoLink ( myData.channel.item.description );
		description	= UtlStr.getConvertLFStr( description );
		link		= myData.channel.item.link;
		createDate	= myData.channel.item.createDate;
		thumb		= myData.channel.item.thumb;
		enabledFlag	= myData.channel.item.enabledFlag;
		blogTitle	= myData.channel.item.blogTitle;
		blogUrl		= myData.channel.item.blogUrl;

		if ( thumb == '[object Object]' ) {
			thumb = '/img/no_image.jpg';
		}
		userDetail	= '<a href="' + link + '">' + title + '</a>';
		userImage	= '<a href="' + link + '"><img src="' + thumb + '" height="75"></a>';
		if ( blogTitle != '' && blogTitle != '[object Object]' ) {
			userBlog	= '<a href="' + blogUrl + '" target="_blank">' + blogTitle + '</a>';
			$( target + '_userBlog' ).html( userBlog );
		}
		$( target + '_userName' ).html( userDetail );
		$( target + '_userBody' ).html( description );
		$( target + '_userImage' ).html( userImage );

		this.basicFrame();
	}
	userDetail.prototype	= new fncFrameBodyCommon;
