// mEmbed(ÆÄÀÏ°æ·Î, °¡·Î, ¼¼·Î)
function mEmbed(url,w,h){

	// ÇÃ·¡½Ã ÄÚµå Á¤ÀÇ
	var flashStr=
	"<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0' width='"+w+"' height='"+h+"' id='flashfile' align='middle'>"+
	"<param name='movie' value='"+url+"' />"+
	"<param name='wmode' value='transparent' />"+
	"<param name='menu' value='false' />"+
	"<param name='quality' value='high' />"+
	"<embed src='"+url+"' wmode='transparent' menu='false' quality='high' width='"+w+"' height='"+h+"' name='flashfile' align='middle' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' />"+
	"</object>";

	// ÇÃ·¡½Ã ÄÚµå Ãâ·Â
	document.write(flashStr);

}

function gotwitter(msg,url) {
		var href = "http://twitter.com/home?status=" + encodeURIComponent(msg) + " " + encodeURIComponent(url);
		var a = window.open(href, 'twitter', '');
		if ( a ) {
			a.focus();
		}
	}
	function gometoday(msg,url,tag) {
		var href = "http://me2day.net/posts/new?new_post[body]=" + encodeURIComponent(msg) + " " + encodeURIComponent(url) + "&new_post[tags]=" + encodeURIComponent(tag);
		var a = window.open(href, 'me2Day', '');
		if ( a ) {
			a.focus();
		}
	}
	 function gofacebook(msg,url) {
                var href = "http://www.facebook.com/sharer.php?u=" +encodeURIComponent(url) + "&t=" + encodeURIComponent(msg);
                var a = window.open(href, 'facebook', '');
                if ( a ) {
                    a.focus();
                }
            }
   
	function goyozm(link,prefix,parameter) {
		var href = "http://yozm.daum.net/api/popup/prePost?link=" + encodeURIComponent(link) + "&prefix=" + encodeURIComponent(prefix) + "&parameter=" + encodeURIComponent(parameter);
		var a = window.open(href, 'yozmSend', 'width=466, height=356');
		if ( a ) {
			a.focus();
		}
	}

