function documentwrite(src){
		document.write(src);
}



function WriteEmbed(emb_id){ 
    document.write(document.getElementById(emb_id).value);
} 

function flashEmbed(source){
	document.write(source);
}

//ÇÃ·¡½Ã
function show_flash(url,width,height,bgcolor,id)
{
	var _object='';
	_object = _object+'<object ';
	if (id)
	{
		_object = _object+' id="'+id+'"';
	}
	_object = _object+ ' classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0"';

	if (width)
	{
		_object = _object+' width="'+width+'" ';
	}

	if (height)
	{
		_object = _object+' height="'+height+'" ';
	}
	_object = _object+'align="absmiddle">';
	_object = _object+'<param name="allowScriptAccess" value="always" />';
	_object = _object+'<param name="movie" value="'+url+'" />';
	_object = _object+'<param name="quality" value="high" />';
	_object = _object+'<param name="wmode" value="transparent" />';
	if (bgcolor)
	{
		_object = _object+'<param name="bgcolor" value="'+bgcolor+'" />';
	}
	_object = _object+'<embed src="'+url+'" quality="high" ' 

	if (bgcolor)
	{
		_object = _object+' bgcolor="'+bgcolor+'" '
	}		

	if (width)
	{
		_object = _object+' width="'+width+'" ';
	}

	if (height)
	{
		_object = _object+' height="'+height+'" ';
	}

	_object = _object+' align="absmiddle" wmode="transparent" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />'
	_object = _object+'</object>';
	document.write(_object);
}
//<SCRIPT language=JavaScript>show_flash("/new_image/swf/index.swf",607,76,"");</SCRIPT>


//XML ³×ºñ ÇÃ·¡½Ã
function FlashObject(swf, width, height, flashvars)
{
    var strFlashTag = new String();
    
    if (navigator.appName.indexOf("Microsoft") != -1)
    {
        strFlashTag += '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ';
        strFlashTag += 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=version=8,0,0,0" width="' + width + '" height="' + height + '">';
        strFlashTag += '<param name="movie" value="' + swf + '"/>';        
        strFlashTag += '<param name="FlashVars" value="' + flashvars + '"/>';
        strFlashTag += '<param name="quality" value="best"/>';
        //strFlashTag += '<param name="bgcolor" value="' + bgcolor + '"/>';
        strFlashTag += '<param name="menu" value="false"/>';
        strFlashTag += '<param name="salign" value="LT"/>';
        strFlashTag += '<param name="scale" value="noscale"/>';
        strFlashTag += '<param name="wmode" value="transparent"/>';
        strFlashTag += '<param name="allowScriptAccess" value="sameDomain"/>';
        strFlashTag += '</object>';
    }
    else
    {
        strFlashTag += '<embed src="' + swf + '" ';
        strFlashTag += 'quality="best" ';
        //strFlashTag += 'bgcolor="' + bgcolor + '" ';
        strFlashTag += 'width="' + width + '" ';
        strFlashTag += 'height="' + height + '" ';
        strFlashTag += 'menu="false" ';
        strFlashTag += 'scale="noscale" ';
        strFlashTag += 'salign="LT" ';
        strFlashTag += 'wmode="transparent" ';
        strFlashTag += 'allowScriptAccess="sameDomain" ';
        strFlashTag += '<param name="FlashVars" value="' + flashvars + '"/>';
        strFlashTag += 'type="application/x-shockwave-flash" ';
        strFlashTag += 'pluginspage="http://www.macromedia.com/go/getflashplayer">';
        strFlashTag += '</embed>';
    }

 document.write(strFlashTag);
}
//<script language="javascript">FlashObject("swf/nav_5mBar.swf", 700, 58, "pageNum=0500");</script>



// ´ÙÁß °Ô½ÃÆÇ(¸ÞÀÎ)
function content_swap(num){
							//alert(num);
							for(i=1; i<7; i++)
							{
								if(i==num) {
									document.getElementById("Tab"+i).src="http://www.link2pro.co.kr/images/DATA/nd_20090427133007/05_but_" + i + "_ov.gif";
									document.getElementById("tb"+i).style.display="";
								}else{
									document.getElementById("Tab"+i).src="http://www.link2pro.co.kr//images/DATA/nd_20090427133007/05_but_" + i + ".gif"; 
									document.getElementById("tb"+i).style.display="none";
								}
							}
						}
//ÆäÀÌÁö¿¡¼­ Å¸ÀÌÆ²:<A onmouseover=content_swap(1) href="javascript:content_swap(1)"> ÀÌ¹ÌÁö¿¡  name=tab1
//Å×ÀÌºí: id=tb1 / style="DISPLAY: none"(Ã³À½¿¡ º¸ÀÌÁö ¾Ê´Â Å×ÀÌºí¿¡)



//µû¶ó´Ù´Ï´Â¸Þ´º//
<!--
self.onError=null;
currentX = currentY = 0; 
whichIt = null; 
lastScrollX = 0; lastScrollY = 0;
NS = (document.layers) ? 1 : 0;
IE = (document.all) ? 1: 0;
<!-- STALKER CODE -->
function heartBeat() {
if(IE) { 
diffY = document.body.scrollTop; 
diffX = 0; 
}
if(NS) { diffY = self.pageYOffset; diffX = self.pageXOffset; }
if(diffY != lastScrollY) {
percent = .1 * (diffY - lastScrollY);
if(percent > 0) percent = Math.ceil(percent);
else percent = Math.floor(percent);
if(IE) document.all.quickmenu.style.pixelTop += percent;
if(NS) document.quickmenu.top += percent; 
lastScrollY = lastScrollY + percent;
}
if(diffX != lastScrollX) {
percent = .1 * (diffX - lastScrollX);
if(percent > 0) percent = Math.ceil(percent);
else percent = Math.floor(percent);
if(IE) document.all.quickmenu.style.pixelLeft += percent;
if(NS) document.quickmenu.top += percent;
lastScrollY = lastScrollY + percent;
} 
} 
if(NS || IE) action = window.setInterval("heartBeat()",1);
//-->
// <body>¿¡ ·¹ÀÌ¾î:<div id="quickmenu" style="position:relative; visibility:visible; left:0px; top:0px; z-index:10 width="¿øÇÏ´Â Æøpx"></div>