(
function comment_create()
{
	if (typeof comment_channelid == 'undefined' || typeof comment_aid == 'undefined')
	{
		return;
	}
	(
	function Init()
	{
		if (typeof comment_show == 'undefined')
		{
			comment_show = 0;
		}
		if (comment_show != 0)
		{
			comment_show = 1;
		}
		if (typeof comment_style == 'undefined')
		{
			comment_style = '';
		}
		if (typeof comment_count_id == 'undefined')
		{
			comment_count_id = '';
		}
	})();
	
	
	var rnd_id = 'COMMENT_IFRAME_ID_'+comment_aid;
	var i_comment_domain = 'comment.funba.sdfdc.com/comment';
	var i_comment_html = 'i_comment_funba.htm';


	document.write('<div id=emu><iframe src="http://'
		+ i_comment_domain
		+ '/'+i_comment_html+'#mini=true&channelid='
		+ comment_channelid + '&aid='
		+ comment_aid + '&type_url='
		+ type_url +'&type='
		+ comment_type + '&subject='
		+ comment_subject + '&style='
		+ comment_style + '&show='
		+ comment_show + '&count_id='
		+ comment_count_id + '&p_iframe_id='
		+ rnd_id + '" frameborder="0"'
		+ (comment_height == 0 ? '' : ' height="' + comment_height + '"')
		+ ' width="90%"'
		+ (comment_height == 0 ? ' scrolling="no"' : '')
		+ (comment_show == 0 ? ' style="display:none;"': '')
		+ ' id="' + rnd_id + '"></iframe></div>');
	document.write(unescape("%3Cscript type='text/javascript'%3Ewindow.attachEvent('onbeforeunload',function(){document.getElementById(\"emu\").innerHTML=\" \";});%3C/script%3E"));
})()