/*!
 * Copyright (c) 2009 John Resig
 * Dual licensed under the MIT and GPL licenses.
 *http://www.cnblogs.com/liuke209//License
 *
 * Date: 2009-06-24 20:03:21 -0500 (Thu, 19 Feb 2009)
 * Revision: 6246
 */
function CreatIframe()
{
	var frm=$("<iframe></iframe>")
			.attr('id','iframe1')
			.attr('src', 'http://settings.messenger.live.com/Conversation/IMMe.aspx?invitee=c01a8a9dd657099b@apps.messenger.live.com&mkt=zh-cn')
			.attr('frameborder','0')
			.attr('style', 'border: solid 1px black;width: 300px;height: 400px;');
	return frm;
}
