function openflash(width,height,src){ 
 return "<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0\" width="+width+" height="+height+"><param name=movie value="+src+"><param name=quality value=high ><embed src="+src+" quality=high  pluginspage=\"http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash\" type=\"application/x-shockwave-flash\" width="+width+" height="+height+"></embed></object>"; 
}

function writeflash(src){ 
 document.write(src); 
} 

function WriteEmbed(emb_id){ 
    document.write(document.getElementById(emb_id).value);
} 

<!-- 
function TitleBar() 
{ 
// ºê¶ó¿ìÀú Å¸ÀÌÆ²¹Ù¿¡ Á¦¸ñÀÌ ¿ÞÂÊ¿¡¼­ºÎÅÍ ³ªÅ¸³³´Ï´Ù. 
// Netscape¿¡¼­ ÇÑ±ÛÀÌ³ª 2¹ÙÀÌÆ® ¹®ÀÚ´Â ±úÁü 
msg = "È¨ÆäÀÌÁö¸¦ ¹æ¹®ÇØ ÁÖ¼Å¼­ °¨»çÇÕ´Ï´Ù."; 
speed = 50; 
pause = 1000; 
msglen = msg.length; 
count = 1; 
TitleBarview(); 
} 

function TitleBarview() 
{ 
if (count <= msglen) { 
string = msg.substring(msglen-count, msglen + count); 
top.document.title = string; 
setTimeout("TitleBarview()", speed); 
count++; 
} else { 
top.document.title = string; 
setTimeout("TitleBarview()", pause); 
count = 1; 
} 
} 
// -->

function openflash(width,height,src){ 
 return "<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0\" width="+width+" height="+height+"><param name=movie value="+src+"><param name=quality value=high ><embed src="+src+" quality=high  pluginspage=\"http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash\" type=\"application/x-shockwave-flash\" width="+width+" height="+height+"></embed></object>"; 
}

function writeflash(src){ 
 document.write(src); 
} 

function WriteEmbed(emb_id){ 
    document.write(document.getElementById(emb_id).value);
} 
/**
	copyright (c) 2006 MIZII.NET comp, All right reverced.
	copyrighter: Myung Woon
	email : mizii@mizii.net
 */

function layerPaste(target, source)
{
	if (target && source)
	{
		target.outerHTML = source.innerHTML + target.outerHTML;
		source.outerHTML = '';
	}
}

function layerRestore(thisLayer)
{
	if (thisLayer.length > 0)
	{
		for (var i = 0, j = 0; i < thisLayer.length; i++)
		{
		    if (thisLayer[i])
		    {
			    thisLayer[i].outerHTML	= thisLayer[i].innerHTML;
			}
		}
	}
	else if (thisLayer)
	{
		thisLayer.outerHTML	= thisLayer.innerHTML;
	}
}
/*
function layerRestore(thisLayer)
{
	if (thisLayer.length > 0)
	{
		for (var i = 0, j = 0; i < thisLayer.length; i++)
		{
			if (thisLayer[i].restore != true)
			{
				thisLayer[i].outerHTML	= thisLayer[i].outerHTML;
				thisLayer[i].restore	= true;
			}
		}
	}
	else if (thisLayer.restore != true)
	{
		thisLayer.outerHTML	= thisLayer.outerHTML;
		thisLayer.restore	= true;
	}
}
*/