<!--
///////////////////// float menu //////////////////////////////////////////////
//
// ¿øº» ¼Ò½º : steelheart
// »çÀÌÆ® : http://steelheart.pe.kr/
// ÀÚ½º ºÎºÐÀÇ ÁÖ¼®Àº steelheart´ÔÀÇ ÁÖ¼®À» ±×´ë·Î »ç¿ëÇß½À´Ï´Ù.
//var stmnLEFT = 810; // ½ºÅ©·Ñ¸Þ´ºÀÇ ÁÂÃø À§Ä¡
var stmnGAP1 = 0; // ÆäÀÌÁö Çì´õºÎºÐÀÇ ¿©¹é
var stmnGAP2 = 94; // ½ºÅ©·Ñ½Ã ºê¶ó¿ìÀú »ó´Ü°ú ¾à°£ ¶ç¿ò. ÇÊ¿ä¾øÀ¸¸é 0À¸·Î ¼¼ÆÃ
var stmnBASE = 10; // ½ºÅ©·Ñ¸Þ´º ÃÊ±â ½ÃÀÛÀ§Ä¡ (¾Æ¹«·¸°Ô³ª ÇØµµ »ó°üÀº ¾øÁö¸¸ stmnGAP1°ú ¾à°£ Â÷ÀÌ¸¦ ÁÖ´Â°Ô º¸±â ÁÁÀ½)
var stmnActivateSpeed = 200; // ¿òÁ÷ÀÓÀ» °¨ÁöÇÏ´Â ¼Óµµ (¼ýÀÚ°¡ Å¬¼ö·Ï ´Ê°Ô ¾Ë¾ÆÂ÷¸²)
var stmnScrollSpeed = 10; // ½ºÅ©·ÑµÇ´Â ¼Óµµ (Å¬¼ö·Ï ´Ê°Ô ¿òÁ÷ÀÓ)
var stmnTimer;

function ReadCookie(name) {
	var label = name + "=";
	var labelLen = label.length;
	var cLen = document.cookie.length;
	var i = 0;
	
	while (i < cLen) {
		var j = i + labelLen;
		if (document.cookie.substring(i, j) == label) {
			var cEnd = document.cookie.indexOf(";", j);
			if (cEnd == -1) cEnd = document.cookie.length;
			return unescape(document.cookie.substring(j, cEnd));
		}
		i++;
	}
	return "";
}

function SaveCookie(name, value, expire) {
	var eDate = new Date();
	eDate.setDate(eDate.getDate() + expire);
	document.cookie = name + "=" + value + "; expires=" + eDate.toGMTString()+ "; path=/";
}

function RefreshStaticMenu() {
	var stmnStartPoint, stmnEndPoint, stmnRefreshTimer;
	stmnStartPoint = parseInt(STATICMENU.style.top, 10);
	stmnEndPoint = document.body.scrollTop + stmnGAP2;
	if (stmnEndPoint < stmnGAP1) stmnEndPoint = stmnGAP1;
	stmnRefreshTimer = stmnActivateSpeed;
	if ( stmnStartPoint != stmnEndPoint ) {
		stmnScrollAmount = Math.ceil( Math.abs( stmnEndPoint - stmnStartPoint ) / 15 );
		STATICMENU.style.top = parseInt(STATICMENU.style.top, 10) + ( ( stmnEndPoint<stmnStartPoint ) ? -stmnScrollAmount : stmnScrollAmount );
		stmnRefreshTimer = stmnScrollSpeed;
	}
	stmnTimer = setTimeout ("RefreshStaticMenu();", stmnRefreshTimer);
}

function ToggleAnimate() {
	if (!ANIMATE.checked) {
		RefreshStaticMenu();
		SaveCookie("ANIMATE", "true", 300);
	} else {
		clearTimeout(stmnTimer);
		STATICMENU.style.top = stmnGAP1;
		SaveCookie("ANIMATE", "false", 300);
	}
}

function InitializeStaticMenu(stmnLEFT) {
	if(stmnLEFT == null)
		stmnLEFT = 620;
	STATICMENU.style.left = stmnLEFT;
	if (ReadCookie("ANIMATE") == "false") {
		ANIMATE.checked = true;
		STATICMENU.style.top = document.body.scrollTop + stmnGAP1;
	} else {
		ANIMATE.checked = false;
		STATICMENU.style.top = document.body.scrollTop + stmnBASE;
		RefreshStaticMenu();
	}
}
//
///////////////////// float menu //////////////////////////////////////////////
function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments;
  document.MM_sr=new Array;
  for(i=0;i<(a.length-2);i+=4){
     if ((x=MM_findObj(a[i]))!=null)
        {
        	document.MM_sr[j++]=x;
        	if(!x.oSrc) x.oSrc=x.src;
        	x.src=a[i+2];
        }
  }
}

function MM_showHideLayers() { //v3.0
  var i,p,v,obj,args=MM_showHideLayers.arguments;
  for (i=0; i<(args.length-2); i+=3) if ((obj=MM_findObj(args[i]))!=null) { v=args[i+2];
    if (obj.style) { obj=obj.style; v=(v=='show')?'visible':(v='hide')?'hidden':v; }
    obj.visibility=v; }
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
function open_Window(theURL,winName,features) {
  window.open(theURL,winName,features);
}
function n1(url)
{
        window.open(url,"name1","width=786,height=513,scrollbars=yes,resizable=no");
}
function priden_menu(name,after)
{
	
eval(name+'.filters.blendTrans.stop();');
eval(name+'.filters.blendTrans.Apply();');
eval(name+'.src="'+after+'";');
eval(name+'.filters.blendTrans.Play();');

}
//¸¶Äû½ºÅ©·Ñ Á¦¾î
function Marq(kind){ 
	switch(kind) {
		case 1:	mq_notice.stop();
		break;
	}
	switch(kind) {
		case 2:
		mq_notice.start();
		break;
	}
}

function login_go(arguments) {
	if(arguments == "verify"){
		alert("°øÀÎÀÎÁõ¼­¸¦ »ç¿ëÇÏ¿© ·Î±×ÀÎÀ» ÇØÁÖ½Ã±â ¹Ù¶ø´Ï´Ù.");
	}
	else{
        alert("·Î±×ÀÎ ÈÄ ÀÌ¿ëÇÏ½Ç ¼ö ÀÖ½À´Ï´Ù");
    }
}
function getCookie( name )
{
  var nameOfCookie = name + "=";
  var x = 0;
  while ( x <= document.cookie.length )
  {
    var y = (x+nameOfCookie.length);
    if ( document.cookie.substring( x, y ) == nameOfCookie ) { 
      if ( (endOfCookie=document.cookie.indexOf( ";", y )) == -1 )
        endOfCookie = document.cookie.length;
      return unescape( document.cookie.substring( y, endOfCookie ) );
    }
    x = document.cookie.indexOf( " ", x ) + 1;
    if ( x == 0 )
      break;
  }
  return "";
}

//===========================================================================
// ÇöÀç½Ã°£°ú ºñ±³  ( 0 º¸´Ù Å©¸é : ¹Ì·¡,    0º¸´Ù ÀÛÀ¸¸é : °ú°Å)
function getTimeUntil(strDate)
{
	if(strDate.length<8){
		return 1;
	}

	var vYear  = parseInt(strDate.substring(0,4),10);
	var vMonth = parseInt(strDate.substring(4,6),10)-1;
	var vDay   = parseInt(strDate.substring(6,8),10);

	var vHour  = (strDate.length>=10) ? parseInt(strDate.substring(8,10)):  23;
	var vMin   = (strDate.length>=12) ? parseInt(strDate.substring(10,12)): 0;

	var targetMS = new Date(vYear, vMonth, vDay, vHour, vMin, 0, 0);
	var today = new Date()
	return targetMS - today.valueOf();
}

// ============================================================================
// cookname :ÄíÅ°ÀÌ¸§
// cookvalue:ÄíÅ°°ª
// sdate:    Á¾·áÀÏÀº '20041010'(³â¿ùÀÏ) ¶Ç´Â '200410101110'(³â¿ùÀÏ½ÃºÐ) À¸·Î Ç¥½Ã. 
//           Á¾·áÀÏÀ» ''ÀÔ·ÂÇÏ¸é ±âÇÑ¾øÀÌ °è¼Ó..
function popup_window_until(cookname,cookvalue,sdate, url, wname, features)
{
	if((getTimeUntil(sdate)>0) && (getCookie(cookname) != cookvalue)){
		window.open(url,wname,features);
	}
}

//top ÇÃ·¡½¬ ¸Þ´º////////////////////////////////////////////////
function goMenu(value)
{

//»çÀÌ¹öÁöÁ¡

	if(value==1000)      top.location.href = "/renewal/cyber/index.html";
	else if(value==1100) top.location.href = "/renewal/cyber/index.jsp?cfilename=stock/index.jsp&rfilename=stock/stock_00100_5.jsp&mindex=1&subindex=1";
	else if(value==1200) top.location.href = "/renewal/cyber/index.jsp?cfilename=sunop/index.jsp&rfilename=futopt/future_00100.jsp&mindex=1&subindex=1";
	else if(value==1300) top.location.href = "/renewal/cyber/index.jsp?cfilename=jumun/index.jsp&rfilename=jumun/stock_order.jsp&mindex=1&subindex=999";
	//¿¹¼ö±Ý
	//else if(value==1400) top.location.href = "/renewal/cyber/index.jsp?cfilename=../cyber/onwin/index.jsp&rfilename=/renewal/onwin/account/account_71010.jsp&mindex=1&subindex=1";
	//ÀüÃ¼°èÁÂ
	else if(value==1400) top.location.href = "/renewal/cyber/index.jsp?cfilename=onwin/index.jsp&rfilename=/renewal/onwin/account/all_account_ini.jsp&mindex=1&subindex=42";
	else if(value==1500) top.location.href = "/renewal/cyber/index.jsp?cfilename=exper/index.jsp&rfilename=finstruc/finstruc.jsp&mindex=1&subindex=999";
	else if(value==1600)  top.location.href = "/renewal/cyber/index.jsp?cfilename=http://www.mycredit.co.kr/credit/priden_index.asp";

//¸®¼­Ä¡	
	else if(value==2000) top.location.href = "/renewal/resch/index.html";
	else if(value==2100) top.location.href = "./resch/index.jsp?cfilename=anals/index.jsp&rfilename=http://192.168.20.219:7001/stock/realprice.jsp&mindex=1&subindex=999";
	else if(value==2200) top.location.href = "./resch/index.jsp?cfilename=daily/index.jsp&rfilename=daily_last.jsp&cat_id=10&mindex=1&subindex=1";
	else if(value==2300) top.location.href = "./resch/index.jsp?cfilename=reprt/index.jsp&rfilename=total_list.jsp&cat_id=1&mindex=1&subindex=1";
	else if(value==2400) top.location.href = "./resch/index.jsp?cfilename=forei/index.jsp&rfilename=http://www.dooriworld.com/sks/index_main.html&mindex=1&subindex=999";
	else if(value==2500) top.location.href = "./resch/index.jsp?cfilename=economy/index.jsp&rfilename=interest.jsp&mindex=1&subindex=999";
	//else if(value==2600) top.location.href = "/renewal/resch/economy/index.jsp?mindex=1&subindex=1";

//±ÝÀ¶»óÇ°	
	else if(value==3000) top.location.href = "/renewal/fundmall/index.html";
	else if(value==3100) top.location.href = "./fundmall/index.jsp?cfilename=cma/index.jsp&rfilename=cma_magiccma.jsp&mindex=3&subindex=6";
	else if(value==3200) top.location.href = "./fundmall/index.jsp?cfilename=find/index.jsp&rfilename=fund_list.jsp";
	else if(value==3300) top.location.href = "./fundmall/index.jsp?cfilename=order/index.jsp&rfilename=fund_buy_ini.jsp?mindex=1&subindex=999";
	else if(value==3400) top.location.href = "./fundmall/index.jsp?cfilename=guide/index.jsp&rfilename=und_fund01.jsp&mindex=1&subindex=999";
	else if(value==3500) top.location.href = "./finpr/index.jsp?cfilename=funds/index.jsp&rfilename=basic/761q.jsp&mindex=1&subindex=999";
	else if(value==3600) MM_openBrWindow('/renewal/xpert/index.html','','resizable=yes,width=950,height=650,scrollbars=yes');
	//else if(value==3600) top.location.href = "./fundmall/index.jsp?cfilename=cma/index.jsp&rfilename=/renewal/onwin/banksend/banksend_72140.jsp&mindex=1&subindex=1";
	//else if(value==3700) top.location.href = "./fundmall/index.jsp?cfilename=cma/index.jsp&rfilename=/renewal/onwin/banksend/banksend_72140.jsp&mindex=1&subindex=1";

//Ã¤±Ç/±â¾÷±ÝÀ¶
	else if(value==4000) top.location.href = "/renewal/bondc/index.html";
	else if(value==4100) top.location.href = "./bondc/index.jsp?cfilename=gonji/index.jsp&rfilename=gongsec.jsp&mindex=1&subindex=999";
	else if(value==4200) top.location.href = "./bondc/index.jsp?cfilename=bndgu/index.jsp&rfilename=prospect/bondday.jsp&mindex=1&subindex=1";
	else if(value==4300) top.location.href = "./bondc/index.jsp?cfilename=forca/index.jsp&rfilename=castguide.jsp&mindex=1&subindex=999";
	else if(value==4400) top.location.href = "./bondc/index.jsp?cfilename=libra/index.jsp&rfilename=index.jsp";
	//else if(value==4500) top.location.href = "./bondc/index.jsp?cfilename=gonji/index.jsp&rfilename=gongsec.jsp&mindex=1&subindex=999";

//¸ð¹ÙÀÏÆ®·¹ÀÌµù 	
	else if(value==5000) top.location.href = "/renewal/mbile/index.html";
	else if(value==5100) top.location.href = "./mbile/index2.jsp?cfilename=hphone/index.jsp&rfilename=mstock_01.jsp&mindex=1&subindex=1";
	else if(value==5200) top.location.href = "./mbile/index2.jsp?cfilename=guide/index.jsp&rfilename=pda_service.jsp&mindex=1";
    else if(value==5300) top.location.href = "./mbile/index2.jsp?cfilename=order/index.jsp&rfilename=hon.jsp&mindex=1&subindex=1";
    else if(value==5400) top.location.href = "./mbile/index2.jsp?cfilename=using/index.jsp&rfilename=pda_list.jsp&mindex=1&subindex=1";
	else if(value==5500) top.location.href = "./mbile/index2.jsp?cfilename=downl/index.jsp&rfilename=down.jsp&mindex=1&subindex=1";
    else if(value==5600) top.location.href = "./mbile/index2.jsp?cfilename=mclub/index.jsp&rfilename=mb_club01.jsp&mindex=1";
    //else if(value==5700) top.location.href = "./mbile/index2.jsp?cfilename=hphone/index.jsp&rfilename=mstock_01.jsp&mindex=1&subindex=1";
}
////////////////ÇÃ·¡½¬ ¸Þ´º end //////////////////

////////////////¹è³Ê start////////////////////////

//top ¸Þ´º
function write_top_menu(){
	document.writeln('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" width="542" height="54">');
	//document.writeln('  <param name=movie value="./img/2006/topmenu_0926.swf">');
	document.writeln('  <param name=movie value="./img/2006/topmenu_1121.swf">');
	document.writeln('  <param name=quality value=high>');
	//document.writeln('  <embed src="./img/2006/topmenu_0926.swf" quality=high pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="542" height="54"></embed>');
	document.writeln('  <embed src="./img/2006/topmenu_1121.swf" quality=high pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="542" height="54"></embed>');
	document.writeln('</object>');
}

//¸ÞÀÎ ÁÂÃø quick¸Þ´º
function write_left_quick(){
	//document.write("<td background='img/2006/061110_visual_bg.jpg'>");
	document.write("<td background='img/2006/1002_lmnbg01.gif'>");
	document.write("<td background='img/2006/bg01.jpg' width='205'>");
	document.write("<table cellspacing='0' cellpadding='0'>");
	document.write("	<tr>");
	document.write("		<td><img src='img/2006/cma_tt01.jpg'></td>");
	document.write("	</tr>");
	document.write("	<tr>");
	document.write("		<td>");
	document.write("			<table cellspacing='0' cellpadding='0' width='179'>");
	document.write("				<tr>");
	document.write("					<td height='20' background='img/2006/1002_lmnbg.gif' align='right'><a href='/renewal/fundmall/index.jsp?cfilename=cma/index.jsp&rfilename=/renewal/onwin/banksend/banksend_72140.jsp&mindex=1&subindex=1' target='_top'>ÀºÇàÀÌÃ¼ Ãâ±Ý</a><img src='img/2006/blank.gif'></td>");
	document.write("				</tr>");
	document.write("				<tr>");
	document.write("					<td height='20' background='img/2006/1002_lmnbg.gif' align='right'><a href='/renewal/fundmall/index.jsp?cfilename=cma/index.jsp&rfilename=/renewal/pridenhelp/firclient/acopening/agreement.jsp&acntGbn=Y&mindex=2&subindex=13' target='_top'>½Å±Ô°í°´-IDµî·Ï</a><img src='img/2006/blank.gif'></td>");
	document.write("				</tr>");
	document.write("				<tr>");
	document.write("					<td height='20' background='img/2006/1002_lmnbg.gif' align='right' style='word-spacing: -4px'><a href='/renewal/fundmall/index.jsp?cfilename=cma/index.jsp&rfilename=/renewal/onwin/custom/custom_70060.jsp&mindex=2&subindex=14' target='_top'>±âÁ¸°í°´-ID¿¡ °èÁÂÃß°¡ µî·Ï</a><img src='img/2006/blank.gif'></td>");
	document.write("				</tr>");
	document.write("			</table>");
	document.write("		</td>");
	document.write("	</tr>");
	document.write("	<tr>");
	document.write("		<td height='15'></td>");
	document.write("	</tr>");
	document.write("	<tr>");
	document.write("		<td><img src='img/2006/cma_tt02.jpg'></td>");
	document.write("	</tr>");
	document.write("	<tr>");
	document.write("		<td>");
	document.write("			<table cellspacing='0' cellpadding='0' width='179'>");
	document.write("				<tr>");
	document.write("					<td height='20' background='img/2006/1002_lmnbg.gif' align='right'><a href='/renewal/fundmall/index.jsp?cfilename=find/index.jsp&rfilename=fund_list.jsp' target='_top'>±ÝÀ¶»óÇ° Ã£±â</a><img src='img/2006/blank.gif'></td>");
	document.write("				</tr>");
	document.write("				<tr>");
	document.write("					<td height='20' background='img/2006/1002_lmnbg.gif' align='right'><a href='/renewal/fundmall/index.jsp?cfilename=online/index.jsp&rfilename=account_makeinfo.jsp&mindex=1' target='_top'>±ÝÀ¶»óÇ° ¿Â¶óÀÎ °èÁÂ°³¼³</a><img src='img/2006/blank.gif'></td>");
	document.write("				</tr>");
	document.write("				<tr>");
	document.write("					<td height='20' background='img/2006/1002_lmnbg.gif' align='right'><a href='/renewal/fundmall/index.jsp?cfilename=account/index.jsp&rfilename=/renewal/onwin/account/account_71130_ini.jsp&mindex=1' target='_top'>±ÝÀ¶»óÇ° °èÁÂÁ¤º¸</a><img src='img/2006/blank.gif'></td>");
	document.write("				</tr>");
	document.write("			</table>");
	document.write("		</td>");
	document.write("	</tr>");
	document.write("</table>");
	document.write("</td>");
}

//¸ÞÀÎÀÌº¥Æ® ¹è³Ê
function write_event_banner(){
	//document.write("<td><img src='img/2006/main_img.jpg' usemap='#map004'></td>");
	//document.write("<map name='map004'>");
	//document.write("	<area href='/renewal/pridenhelp/index.jsp?cfilename=gonji/index.jsp&rfilename=event_ingview.jsp&senumber=2905&mindex=4&subindex=1' target='_top' coords='0,148,97,227' alt=''>");
	//document.write("	<area href='/renewal/fundmall/index.jsp?cfilename=cma/index.jsp&rfilename=cma_magiccma.jsp&mindex=3&subindex=6' target='_top' coords='99,0,516,232' alt=''>");
	//document.write("	<area href='/renewal/fundmall/index.jsp?cfilename=cma/index.jsp&rfilename=/renewal/pridenhelp/firclient/acopening/agreement.jsp&acntGbn=Y&mindex=2&subindex=13' target='_top' coords='271,232,402,255' alt=''>");
	//document.write("	<area href='/renewal/fundmall/index.jsp?cfilename=cma/index.jsp&rfilename=/renewal/onwin/banksend/banksend_72140.jsp&mindex=1&subindex=1' target='_top' coords='403,232,516,255' alt=''>");
	//document.write("</map>");
	//magic cma
	//document.write("<td><a href='/renewal/fundmall/index.jsp?cfilename=cma/index.jsp&rfilename=cma_magiccma.jsp&mindex=3&subindex=6' target='_top'><img src='img/2006/1002_mainimg.jpg' border='0'></a></td>");
	//document.write("<td><a href='http://tuja.priden.com' target='_blank'><img src='img/2006/061110_visual.jpg' border='0'></a></td>");
	//document.write("<a href='/renewal/fundmall/index.jsp?cfilename=cma/index.jsp&rfilename=cma_magiccma.jsp&mindex=3&subindex=6' target='_top'><img src='img/2006/1002_mainimg.jpg' border='0'></a>");
	


	//flash¹öÀü
	//document.writeln('<td>');
	//document.writeln('<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="599" height="256" id="priden_main_1204" align="middle">');
	//document.writeln('<param name="allowScriptAccess" value="sameDomain" />');
	//document.writeln('<param name="movie" value="img/2006/priden_main_1204_1.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#ffffff" /><embed src="img/2006priden_main_1204.swf" quality="high" bgcolor="#ffffff" width="599" height="256" name="priden_main_1204" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
	//document.writeln('</object>');
	//document.writeln('</td>');

	document.writeln('<td>');
	document.writeln('<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="599" height="256" id="priden_main_1227" align="middle">');
	document.writeln('<param name="allowScriptAccess" value="sameDomain" />');
	document.writeln('<param name="movie" value="img/2006/priden_main_0110.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#ffffff" /><embed src="img/2006/priden_main_0110.swf" quality="high" bgcolor="#ffffff" width="599" height="256" name="priden_main_0110" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
	document.writeln('</object>');
	document.writeln('</td>');

}
//ÆÝµå ÃßÃµ»óÇ° ¹è³Ê
function write_fund_banner(){
/*
	document.write("<td>");
	document.write("<table cellspacing='0' width='140' cellpadding='0'>");
	document.write("	<tr>");
	document.write("		<td><a href='#'><img src='img/2006/1002_fund01.jpg' border='0' usemap='#map01'></a></td>");
	document.write("	</tr>");
	document.write("	<map name='map01'>");
	document.write("		<area href='/renewal/fundmall/index.jsp?cfilename=find/index.jsp&rfilename=fund_detail.jsp&mindex=1&fcode=21049003' target='_top' coords='0,0,139,60' alt=''>");
	document.write("		<area href='/renewal/fundmall/index.jsp?cfilename=find/index.jsp&rfilename=fund_detail.jsp&mindex=1&fcode=21049003' target='_top' coords='15,62,75,80' alt=''>");
	document.write("		<area href='/renewal/fundmall/index.jsp?cfilename=order/index.jsp&rfilename=fund_buy_ini.jsp&mindex=1&fcode=21049003' target='_top' coords='77,62,126,80' alt=''>");
	document.write("	</map>");
	document.write("	<tr>");
	document.write("		<td><a href='#'><img src='img/2006/1002_fund02.jpg' border='0' usemap='#map02'></a></td>");
	document.write("	</tr>");
	document.write("	<map name='map02'>");
	document.write("		<area href='/renewal/fundmall/index.jsp?cfilename=find/index.jsp&rfilename=fund_detail.jsp&mindex=1&fcode=20043761' target='_top' coords='0,0,139,60' alt=''>");
	document.write("		<area href='/renewal/fundmall/index.jsp?cfilename=find/index.jsp&rfilename=fund_detail.jsp&mindex=1&fcode=20043761' target='_top' coords='15,60,75,78' alt=''>");
	document.write("		<area href='/renewal/fundmall/index.jsp?cfilename=order/index.jsp&rfilename=fund_buy_ini.jsp&mindex=1&fcode=20043761' target='_top' coords='77,60,126,78' alt=''>");
	document.write("	</map>");
	document.write("	<tr>");
	document.write("		<td><a href='#'><img src='img/2006/1002_fund03.jpg' border='0' usemap='#map03'></a></td>");
	document.write("	</tr>");
	document.write("	<map name='map03'>");
	document.write("		<area href='/renewal/fundmall/index.jsp?cfilename=find/index.jsp&rfilename=fund_detail.jsp&mindex=1&fcode=23008604' target='_top' coords='0,0,139,60' alt=''>");
	document.write("		<area href='/renewal/fundmall/index.jsp?cfilename=find/index.jsp&rfilename=fund_detail.jsp&mindex=1&fcode=23008604' target='_top' coords='15,60,75,78' alt=''>");
	document.write("		<area href='/renewal/fundmall/index.jsp?cfilename=order/index.jsp&rfilename=fund_buy_ini.jsp&mindex=1&fcode=23008604' target='_top' coords='77,60,126,78' alt=''>");
	document.write("	</map>");
	document.write("</table>");
	document.write("</td>");
*/
}
//SK ÃßÃµ¸Þ´º ¹è³Ê
function write_recommend_banner(){ 
/*
	document.write("<td>");
	document.write("<table cellspacing='0' cellpadding='0' width='142' border='0'>");
	document.write("	<tr>");
	document.write("		<td><a href='#' onClick='javascript:MM_openBrWindow(\"/renewal/pridenhelp/firclient/autoclub2/main.jsp\",\"autoclub\",\"width=786,height=513,scrollbars=yes,resizable=no\")\;'><img src='img/2006/1002_quick01.jpg' border='0'></a></td>");
	document.write("	</tr>");
	document.write("	<tr>");
	document.write("		<td><a href='/renewal/mbile/index2.jsp?cfilename=hphone/index.jsp&rfilename=/renewal/popup/event_1104.html&mindex=1&subindex=1' target='_top'><img src='img/2006/1002_quick02.jpg' border='0'></a></td>");
	document.write("	</tr>");
	document.write("	<tr>");
	document.write("		<td><a href='/renewal/cyber/index.jsp?cfilename=/renewal/cyber/onwin/index.jsp&rfilename=/renewal/onwin/join/LH_intro.html&mindex=22&subindex=67' target='_top'><img src='img/2006/1002_quick03.jpg' border='0'></a></td>");
	document.write("	</tr>");
	document.write("</table>"); 
	document.write("</td>");
*/
}

//¿ìÃø¹è³Ê
function write_right_banner(){     
//	document.write("<a href='http://www.priden.com/help/event/hahahoho/hahahoho_mobile.html' target='_blank'><img src='img/2006/1002_event01.jpg' border='0'></a>");

	//document.write("<a href='http://www.sk.co.kr/communication/event/event_view.php' target='_blank'><img src='img/2006/groupevent.jpg' border='0'></a>");
	//document.write("<br><img src='' height='5'><br>");
	//document.write("<a href='http://tuja.priden.com' target='_blank'><img src='img/2006/priden_tujaban.jpg' border='0'></a>");
	document.writeln('<param name="movie" value="img/2006/sk_152_62_0102.swf"/><param name="quality" value="high" /><param name="bgcolor" value="#ffffff" /><embed src="img/2006/sk_152_62_0102.swf" quality="high" bgcolor="#ffffff" width="152" height="62" name="sk_152_62_0102.swf" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
	//document.write("<a href='/renewal/fundmall/index.jsp?cfilename=cma/index.jsp&rfilename=cma_magiccma.jsp&mindex=3&subindex=6' target='_top'><img src='img/2006/1110_CMA_ban.jpg' border='0'></a>");
	//¸ðÀÇÅõÀÚ
	//document.write(<br><img src='' height='5'>");
	//document.write("<a href='http://kofa.edaily.co.kr/?member=sk&code=kImp008' target='_blank'><img src='img/2006/motu_ban.gif' border='0'></a>");
	document.write("<img src='' height='5'><br>");
	document.write("<a href='/renewal/mbile/index2.jsp?cfilename=order/index.jsp&rfilename=m7.jsp&mindex=6&subindex=6' target='_top'><img src='img/2006/aa.gif' border='0'></a>");
	
	document.write("<br><img src='' height='5'><br>");
	document.write("<a href='./pridenhelp/index.jsp?cfilename=gonji/index.jsp&rfilename=event_ingview.jsp&senumber=3158&mindex=4&subindex=1' target='_top'><img src='img/2006/061213_optionban.gif' border='0'></a>");
	//ÇÚµåÆù¹«·áÀÌº¥Æ®
	//document.write("<br><img src='' height='5'><br>");
	//document.write("<a href='./pridenhelp/index.jsp?cfilename=gonji/index.jsp&rfilename=event_ingview.jsp&senumber=3112&mindex=4&subindex=1' target='_top'><img src='img/2006/mobile_mainban.gif' border='0'></a>");
}

////////////////¹è³Ê end////////////////////////
function goPriden(dir,url)
{
	location.href = "../pridenhelp/index.jsp?cfilename=" + dir + "/index.jsp&rfilename=" + url;
}
////////////////ÆË¾÷°øÁö start////////////////////////  
function popup_window()
{
  /////////////////////////////////
  // µÎ¹øÂ°Ã¢ À§Ä¡=Ã¹Ã¢À§Ä¡ + Ã¹Ã¢ size + 10 
  /////////////////////////////////
  /*
  //enstock V7
  popup_window_until('Notice060525','priden060525','200606162359','/renewal/popup/HTS_update_pop.html','Notice060525','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=300,height=445,top=100,left=100');	//¾Ë¹ÙÆ®·Î½ºÆË¾÷
  popup_window_until('Notice060612','priden060612','200606162359','/renewal/popup/alba_pop0612.html','Notice060612','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=350,height=376,top=100,left=409');
  //¾Ë¹ÙÆ®·Î½º °­¿¬È¸ÆË¾÷	
  popup_window_until('Notice060622','priden060622','200606302359','/renewal/popup/060622alba_pop.html','Notice060622','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=350,height=432,top=100,left=100');
  //¾Ë¹ÙÆ®·Î½º °­¿¬È¸ÆË¾÷	
  popup_window_until('Notice060704','priden060704','200607081600','/renewal/popup/kkachi_pop.html','Notice060704','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=350,height=388,top=100,left=100');
  //¾Ë¹ÙÆ®·Î½º ¾Æ³Ê½º¼¾ÅÍ ÆË¾÷
  popup_window_until('Notice060718','priden060718','200607221700','/renewal/popup/060718_pop.html','Notice060718','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=500,height=300,top=100,left=100');
  //¸®´õ½º¼¾ÅÍ ÆË¾÷
  //popup_window_until('Notice060818','priden060818','200609262359','/renewal/popup/leaders_pop.html','Notice060818','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=300,height=300,top=100,left=100');
  //Á¤Àü¾È³» ÆË¾÷
  popup_window_until('Notice061018','priden061018','200610221200','/renewal/popup/061018_pop.html','Notice061018','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=300,height=400,top=100,left=100');
  //°­¿¬È¸ ÆË¾÷
  popup_window_until('Notice061101','priden061101','200611041400','/renewal/popup/061101_ojw_pop.html','Notice061101','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=250,height=350,top=100,left=100');
  //¾Ö³Î¸®½ºÆ® Ã¤¿ë ÆË¾÷
  //popup_window_until('Notice061114','priden061114','200611222359','/renewal/popup/steeldaily.html','Notice061114','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=300,height=450,top=100,left=100');
  popup_window_until('Notice061124','priden061124','200611292359','/renewal/popup/1124_pop.html','Notice061124','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=300,height=350,top=100,left=100');
  //RP ÀÌÀÚÀ² º¯°æ ÆË¾÷
  //popup_window_until('Notice061205','priden061205','200612192359','/renewal/popup/061205_RP_pop.html','Notice061205','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=400,height=460,top=100,left=100');
  //SK Speed ÆË¾÷
  //popup_window_until('NoticeSK','pridenSK','200612142359','/renewal/popup/skspeedpop.html','NoticeSK','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=300,height=300,top=100,left=100');
  //ÅõÀÚ¼öÀÍ·ü ÆË¾÷
  //popup_window_until('Tuja_Relay','done','200612232359','/fund/tuja/tuja_pop.jsp','Tuja_Relay','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=340,height=460,top=100,left=410');
  //Ç»¾î³ª³ëÅØ °ø¸ðÁÖ Ã»¾à...
  //popup_window_until('Notice070112','priden070112','200701162359','/renewal/popup/070112_purepop.html','Notice070112','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=300,height=300,top=100,left=100');
  //¿É¼Ç¸Å¼ö Àü¿ë°èÁÂ ¼ö¼ö·áÀ² ÀÎÇÏ °ü·Ã ÆË¾÷Ã¢
  //popup_window_until('Notice070124','priden070124','200702062359','/renewal/popup/070124_pop.html','Notice070124','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=300,height=375,top=100,left=100');
  //¸®´º¾ó ÆË¾÷
  //popup_window_until('Notice070203','priden070203','200702072359','/renewal/popup/openpop.html','Notice070203','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=352,height=300,top=100,left=100');
  //mcma ½ÅÃ» ÆË¾÷
  //popup_window_until('Notice070212','priden070212','200702232359','/renewal/popup/mcma_pop.html','Notice070212','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=500,height=250,top=100,left=100');
  //¸®´º¾ó ÀÌº¥Æ® ÆË¾÷
  //popup_window_until('Notice070221','priden070221','200703092359','/renewal/popup/070221_renewalpop.html','Notice070221','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=356,height=312,top=100,left=100');
  //ÀÏº»ÆÝµå ÀÌº¥Æ® ÆË¾÷
  //popup_window_until('Notice070312','priden070312','200703302359','/renewal/popup/070312_japan.html','Notice070312','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=356,height=312,top=100,left=100');
  //popup_window_until('Notice070321','priden070321','200703302359','/renewal/popup/070321_cocreppop.html','Notice070321','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=356,height=312,top=100,left=100');
  //°£´Ü °Ë»ö ÆË¾÷
  //popup_window_until('Notice070327','priden070327','200703312359','/renewal/popup/070327_pop.html','Notice070327','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=356,height=312,top=100,left=100');
  //Áõ°Å±Ý100%ÆË¾÷
  //popup_window_until('Notice070426','priden070426','200705152359','/renewal/popup/070425_pop.html','Notice070426','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=356,height=312,top=100,left=100');
  //cmaÅëÇÕÆË¾÷
  //popup_window_until('Notice070430','priden070430','200705062359','/renewal/popup/070430_cmapop.html','Notice070430','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=356,height=312,top=100,left=476');
  //ARS ÇÁ·Î±×·¥ °³Æí
  //popup_window_until('Notice070612','priden070612','200706192359','/renewal/popup/0700612_arspop.html','Notice070612','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=356,height=312,top=100,left=100');
  //cma È¨¼îÇÎ
  //popup_window_until('Notice070626','priden070626','200707062359','/renewal/popup/CJ_pop.html','Notice070626','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=347,height=388,top=100,left=10');
  //·¹ÀÎº¸¿ì
  //popup_window_until('Notice070704','priden070704','200707071159','/renewal/popup/rainbow_pop2.html','Notice070704','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=600,height=505,top=100,left=370');
  //½Å¿ëÀ¶ÀÚ
  //popup_window_until('Notice070724','priden070724','200707311159','/renewal/popup/070724_pop.html','Notice070724','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=490,height=420,top=100,left=100');
  //ÀºÇàÀÌÃ¼ ¹× Á¶È¸ ¾÷¹« ÁßÁö ¾È³»
  //popup_window_until('Notice070802','priden070802','200708051159','/renewal/popup/0802_pop.html','Notice070802','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=490,height=582,top=100,left=100');
  //ÁÖ½Ä ´ãº¸ ´ëÃâ
  //popup_window_until('Notice070809','priden070809','200708161159','/renewal/popup/070809_pop.html','Notice070809','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=460,height=350,top=100,left=100');
  //Â÷¼¼´ë ¸ð¹ÙÀÏ Áõ±Ç ¼­ºñ½º
  //popup_window_until('Notice070823','priden070823','200708301159','/renewal/popup/070823_usim_pop.html','Notice070823','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=360,height=320,top=100,left=100');
  //ÆÄ»ý»óÇ° ½ÇÀü ÅõÀÚ´ëÈ¸
  //popup_window_until('Notice070911','priden070911','200709181159','/renewal/popup/070911_tuja_pop.html','Notice070911','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=360,height=320,top=100,left=100');
  //±³º¸ ±Û·Î¹ú CEO ÁÖ½ÄÇü ÆÝµå °¡ÀÔ ÀÌº¥Æ®
  //popup_window_until('Notice071015','priden071015','200710221159','/renewal/popup/globalCEOfund_pop.html','Notice071015','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=400,height=310,top=100,left=100');
  //¾Ë¹ÙÆ®·Î½º ¼±¹°¿É¼Ç °­¿¬È¸
  //popup_window_until('Notice071026','priden071026','200711232359','/renewal/popup/alba_pop.html','Notice071026','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=350,height=440,top=100,left=100');
  //SK¿ÍÀÌ¹ø½º ÄÚ¸®¾È ½Ã¸®Áî ¿ì½Â±â³ä ÀÌº¥Æ®
  //popup_window_until('Notice071031','priden071031','200711151159','/renewal/popup/skwyverns_pop.html','Notice071031','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=300,height=390,top=100,left=460');
  //ÆÝ´Ù ÀÌº¥Æ®
  //popup_window_until('Notice071107','priden071107','200701311159','/renewal/popup/071102_funda01.html','Notice071107','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=350,height=610,top=100,left=460');
  //È¨¼¾ÅÍ
  //popup_window_until('Notice071121','priden071121','200711212359','/renewal/popup/071121_pop.html','Notice071107','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=350,height=315,top=100,left=460');
  //ÀÔÃâ±Ý Áß´Ü ¾È³»
  //popup_window_until('Notice071203','priden071203','200712032359','/renewal/popup/071203_pop.html','Notice071203','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=500,height=413,top=100,left=450');
  //ÅõÀÚ ´ëÈ¸
  popup_window_until('Notice071204','priden071204','200712252359','/renewal/popup/071203_tujapop.html','Notice071204','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=300,height=425,top=100,left=100');
  //¿¬¸» ¸Å¸Å ½Ã°£ º¯°æ
  popup_window_until('Notice071226','priden071226','200801022359','/renewal/popup/071226_pop.html','Notice071226','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=500,height=705,top=100,left=500');
  //Çö±Ý¿µ¼öÁõ
  //	popup_window_until('Notice071206','priden071206','200801312359','/renewal/popup/071205_cashinfo.html','Notice071206','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=355,height=320,top=100,left=475');
  //lucky seed money Event
  popup_window_until('Notice080121','priden080121','200802292359','/renewal/popup/lucky_evpop.html','Notice080121','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=350,height=370,top=100,left=650');
  popup_window_until('Notice080219','priden080219','200802292359','/renewal/popup/stx_pop.html','Notice080219','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=552,height=625,top=100,left=50');
  //¿À¿£ºñ ¼ö¿ä ¿¹Ãø
  popup_window_until('Notice080313','priden080313','200803182359','/renewal/popup/hsonb_pop.html','Notice080313','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=550,height=610,top=100,left=50');
  //ÀüÀÚ±ÝÀ¶ º¸¾È µî±Þº° ÀÌÃ¼/´ëÃ¼ ÇÑµµ Â÷µîÈ­ ¾È³»
  popup_window_until('Notice080318','priden080318','200804012359','/renewal/popup/080317_pop.html','Notice080318','toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=no,width=570,height=600,top=100,left=50');
  //ÆÄ»ý°¡
  popup_window_until('Notice080407','priden080407','200804142359','/renewal/popup/psgpop01.html','Notice080407','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=400,height=320,top=100,left=50');
  //ÁÖ½ÄÅõÀÚ
  popup_window_until('Notice080411','priden080411','200804112359','/renewal/popup/080411_pop01.html','Notice080411','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=300,height=325,top=100,left=480');
  //¼ö¼ö·á
  //popup_window_until('Notice080519','priden080519','200805302359','/renewal/popup/080519_pop.html','Notice080519','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=543,height=600,top=100,left=50');
  //ÁÖ½Ä¿¬°è
  popup_window_until('Notice080526','priden080526','200805272359','/renewal/popup/elsdls_pop.html','Notice080526','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=460,height=500,top=100,left=50');
  //ÁÖ½Ä¿¬°è2,3
  popup_window_until('Notice080623','priden080623','200807012359','/renewal/popup/elsdls_pop0806.html','Notice080623','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=462,height=575,top=100,left=50');
  //ÁÖ½Ä¿¬°è2,3
  popup_window_until('Notice080630','priden080630','200807032359','/renewal/popup/elsdls_pop080701.html','Notice080630','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=462,height=575,top=100,left=520');
  //¼³¹®Á¶»ç
  popup_window_until('Notice080717','priden080717','200807212359','/renewal/event/marketing/pop_080714.html','Notice080717','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=515,height=650,top=100,left=50');
  //½Ã½ºÅÛÁ¡°Ë
  popup_window_until('Notice080806','priden080806','200808171359','/renewal/popup/080805_pop.html','Notice080806','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=340,height=480,top=100,left=50');
  //cma
  popup_window_until('Notice080807','priden080807','200808222359','/renewal/popup/cma_pop.html','Notice080807','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=280,height=310,top=100,left=400');
  //T
  popup_window_until('Notice080826','priden080826','200809302359','/renewal/popup/she_Tpop.html','Notice080826','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=374,height=270,top=100,left=50');
  //cma2
  popup_window_until('Notice080829','priden080829','200809122359','/renewal/popup/cma_pop2.html','Notice080829','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=280,height=310,top=100,left=435');
  //SKÁõ±Ç ÅðÁ÷¿¬±Ý ºÎ¹® °æ·ÂÁ÷ Ã¤¿ë
  popup_window_until('Notice080929','priden080929','200810072359','/renewal/popup/080929_pop.html','Notice080929','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=300,height=325,top=100,left=435');
  //cma ±Ý¸®
  popup_window_until('Notice081009','priden081009','200810242359','/renewal/popup/1009cma_pop.html','Notice081009','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=280,height=270,top=100,left=50');
  //±Ý¸® º¯°æ
  popup_window_until('Notice081028','priden081028','2008111112359','/renewal/popup/20081028_cma_pop.html','Notice081028','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=280,height=270,top=100,left=50');
  
  //Áõ±Ç¿¹Å¹°áÁ¦¿ø½Ç±âÁÖ
  popup_window_until('Notice081020','priden081020','200811212359','/renewal/popup/081020_pop.html','Notice081020','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=540,height=630,top=100,left=50');
  */	
  //Á¤±â¿¹±ÝÇü ·¦ »óÇ° Ãâ½Ã
  //popup_window_until('Notice081203','priden081203','200812312359','/renewal/popup/081203_pop.html','Notice081203','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=410,height=410,top=100,left=650');
  //¾È³»¹®
  //popup_window_until('Notice081210','priden081210','200812152359','/renewal/popup/20081210_pda_pop.html','Notice081210','toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=no,width=620,height=620,top=100,left=20');
  //·¦Çü CMA ±Ý¸®º¯°æ ¾È³»
  //popup_window_until('Notice081215','priden081215','200912212359','/renewal/popup/20081215cma_pop.html','Notice081215','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=280,height=260,top=100,left=20');
  //»õ ÇØ ÀÎ»ç
  //popup_window_until('Notice081231','priden081231','200901092359','/renewal/popup/new2009.html','Notice081231','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=400,height=394,top=100,left=20');
  //Á¶¼¼Æ¯·ÊÁ¦ÇÑ¹ý °³Á¤¾È³»
  //popup_window_until('Notice081229','priden081229','200901052359','/renewal/popup/081229_pop.html','Notice081229','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=400,height=505,top=100,left=450');
  //VIP°í°´´ë»ó ÀÚ»ê°ü¸®¿µ¾÷Á÷ Ã¤¿ë°ø°í
  //popup_window_until('Notice09119','priden09119','200901312359','/renewal/popup/re_pop.html','Notice09119','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=360,height=275,top=100,left=50');
  //ÀÔÃâ±Ý/Ã¼Å©Ä«µå»ç¿ë ¼­ºñ½º ÀÏ½ÃÁß´Ü ¾È³»
  //popup_window_until('Notice090120','priden090120','200901222359','/renewal/popup/pop_090120.html','Notice090120','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=340,height=475,top=100,left=450');
  //¸ÞµðÅ¬·´ ÆË¾÷
  //popup_window_until('Notice090130','priden090130','200902062359','/renewal/popup/pop_090202.html','Notice090130','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=380,height=450,top=100,left=460');
  //ÀÚÅë¹ý ½ÃÇà¿¡ µû¸¥ ±ÝÀ¶ÅõÀÚ»óÇ° ÆÇ¸ÅÀýÂ÷ ½ÃÇà
  //popup_window_until('Notice090204','priden090204','200903032359','/renewal/popup/090204_pop.html','Notice090402','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=400,height=500,top=100,left=50');
  //ÇÑ±¹°Å·¡¼Ò Â÷¼¼´ë ÀÌÇà°ü·Ã °í°´¼­ºñ½º Áß´Ü ¾È³»
  //popup_window_until('Notice090316','priden090316','200903230810','/renewal/popup/krx_pop.html','Notice090316','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=380,height=535,top=100,left=50');
  //¿ÜÈ­Áõ±Ç¼ö¼ö·áº¯°æ¾È³»
  //popup_window_until('Notice090420','priden090420','200905312359','/renewal/popup/090420_pop.html','Notice090420','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=420,height=570,top=100,left=50');
  //¼Õ¿À°ø ÀüÈ¯»çÃ¤ Ã»¾à¾È³»
  //popup_window_until('Notice090427','priden090427','200904291659','/renewal/popup/090427_pop.html','Notice090427','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=400,height=720,top=100,left=500');
  //ÀºÇàÁ¦ÈÞ°èÁÂ ¼­ºñ½º È®´ë ¾È³»
  //popup_window_until('Notice090430','priden090430','200905152359','/renewal/popup/090430_pop.html','Notice090430','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=380,height=600,top=100,left=500');
  //ÆÄ»ý°áÇÕÁõ±Ç Ã»¾à¾È³»
  //popup_window_until('Notice090511','priden090511','200905141559','/renewal/popup/els_pop_0511.html','Notice090511','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=460,height=500,top=100,left=500');
  //ÆÄ»ý°áÇÕÁõ±Ç Ã»¾à¾È³»
  //popup_window_until('Notice090525','priden090525','200905281559','/renewal/popup/els_pop_0525.html','Notice090525','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=460,height=550,top=100,left=500');
  //½º¸¶Æ®Áõ±Ç ¿ä±ÝÁ¦ Ãâ½Ã¾È³»
  //popup_window_until('Notice090608','priden090608','200906302359','/renewal/popup/pop_0608.html','Notice090608','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=380,height=490,top=100,left=50');
  //ELS ÆË¾÷
  //popup_window_until('Notice0906081','priden0906081','200906122359','/renewal/popup/els_pop_0608.html','Notice0906081','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=460,height=540,top=100,left=530');
  //À¯Áø·Îº¿ ÀÏ¹Ý °ø¸ð Ã»¾à ¾È³»
  //popup_window_until('Notice090618','priden090618','200906242459','/renewal/popup/090618_pop.html','Notice090618','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=345,height=380,top=100,left=50');
  //ELS ÆË¾÷
  //popup_window_until('Notice090623','priden090623','200906251559','/renewal/popup/els_pop_0623.html','Notice090623','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=345,height=375,top=100,left=410');
  //SKºê·Îµå¹êµå ÁÖÁÖ¹èÁ¤ Ã»¾à¾È³»
  //popup_window_until('Notice090713','priden090713','200907162359','/renewal/popup/090713_pop.html','Notice090713','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=345,height=375,top=100,left=50');
  //½ÅÁ¾ ETF µµÀÔ¹æ¾È ¹× È°¿ëÀü·« ¼¼¹Ì³ª
  //popup_window_until('Notice0907161','priden0907161','200907222359','/renewal/popup/etfpop.html','Notice0907161','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=300,height=380,top=100,left=470');
  //Áö±Þ°áÁ¦ ¼­ºñ½º ¾È³»
  //popup_window_until('Notice090731','priden090731','200908302359','/renewal/popup/09731_pop.html','Notice090731','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=350,height=440,top=100,left=50');
  //¿È´Ï¾Æ ÀÌº¥Æ®
  //popup_window_until('Notice090716','priden090716','200909302359','/renewal/popup/popup_mts.html','Notice090716','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=402,height=669,top=100,left=640');
  //ÆË¾÷ Á¾ÇÕ
  //popup_window_until('Notice090804','priden090804','200910302359','/renewal/popup/090817_pop.html','Notice090804','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=800,height=425,top=100,left=20');
  
  //¼­ºñ½º ÀÏ½Ã ÁßÁö
  //popup_window_until('Notice090812','priden090812','200908142359','/renewal/popup/090812_pop.html','Notice090812','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=382,height=450,top=300,left=20');
  
  //¼±¹°¿É¼Ç ÁÖ¹®À¯Çü ¾È³»
  //popup_window_until('Notice090827','priden090827','200908312359','/renewal/popup/090827_pop.html','Notice090827','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=380,height=380,top=300,left=20');
  
  //È¨Æ®·¹ÀÌµù
  //popup_window_until('Notice090904_2','priden090904_2','200912312359','/renewal/popup/090904_takepop.html','Notice090904_2','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=400,height=495,top=50,left=20');
  //ÆË¾÷ Á¾ÇÕ
  //popup_window_until('Notice090904_1','priden090904_1','200910312359','/renewal/popup/090904_pop3.html','Notice090904_1','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=600,height=425,top=50,left=430');
  //popup_window_until('Notice091013','priden091013','200912312359','/renewal/popup/091110_pop.html','Notice090904_1','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=400,height=425,top=50,left=430');
  //popup_window_until('Notice090930','priden090930','200910042359','/renewal/popup/pop_090930.html','Notice090930','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=400,height=300,top=50,left=430');
  //Â÷¼¼´ë ±ÝÀ¶ ½Ã½ºÅÛ ¿ÀÇÂ
  //popup_window_until('Notice091221','priden091221','200912280759','/renewal/popup/091221_pop.html','Notice091221','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=440,height=635,top=50,left=50');
  //popup_window_until('Notice091227','priden091227','200912282359','/renewal/popup/091228_pop.html','Notice091227','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=485,height=625,top=50,left=50');
  
  //(ÁÖ)¿ì³ë¾ØÄÄÆÛ´Ï ¼ö¿ä¿¹Ãø ¾È³»
  //popup_window_until('Notice091229','priden091229','200912291659','/renewal/popup/pop_1229.html','Notice091229','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=400,height=520,top=50,left=50');
  
  //KOSPI200¼±¹°(¾ß°£)±Û·Î¹ú°Å·¡ ¾È³»
  //popup_window_until('Notice091229_2','priden091229_2','201001082359','/renewal/popup/pop_1229_1.html','Notice091229_2','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=400,height=570,top=50,left=50');
  
  //(ÁÖ)¿ì³ë¾ØÄÄÆÛ´Ï
  //popup_window_until('Notice091230','priden091230','201001012359','/renewal/popup/unopop_1230.html','Notice0912230','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=400,height=490,top=50,left=460');
  
  //Á¾ÇÕ
  //popup_window_until('Notice091230','priden091230','201001082359','/renewal/popup/pop_100104.html','Notice0912230','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=577,height=420,top=50,left=50');
  
  //¾ß°£ ±Û·Î¹ú °Å·¡
  //popup_window_until('Notice100104','priden100104','201001082359','/renewal/popup/pop_100104.html','Notice100104','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=288,height=420,top=50,left=50');

  //Ã»¾à¾È³»
  //popup_window_until('Notice100105','priden100105','201001062359','/renewal/popup/pop_100105.html','Notice100105','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=500,height=330,top=50,left=50');
  
  //Ã»¾à¾È³»
  //popup_window_until('Notice100106','priden100106','201001062359','/renewal/popup/pop_100106.html','Notice100106','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=577,height=420,top=50,left=50');
  
  //ÀçÈÞ´ëÃâ°øÁö
  //popup_window_until('Notice100119_1','priden100119_1','201001272359','/renewal/popup/pop_0119.html','Notice100119_1','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=300,height=290,top=50,left=50');
  //Ã»¾à¾È³»
  //popup_window_until('Notice100119','priden100119','201001192359','/renewal/popup/pop_100118.html','Notice100119','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=249,height=331,top=50,left=370');
 //Á¾ÇÕ 
  popup_window_until('Notice100208','priden100208','201004162359','/renewal/popup/100208_pop.html','Notice100208','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=598,height=423,top=50,left=50');
 //±¹¹Î/¿ì¸®ÀºÇà ¼­ºñ½º ÀÏ½Ã Áß´Ü ¾È³»
 //popup_window_until('Notice100210','priden100210','201002161459','/renewal/popup/100210_pop.html','Notice100210','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=350,height=423,top=50,left=670');
 //°øÀÎÀÎÁõ
 //popup_window_until('Notice100303','priden100303','201003102359','/renewal/popup/smartphone_popup.htm','Notice100303','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=375,height=423,top=50,left=670');
 //¾Èµå·ÎÀÌµå ÆË¾÷
 //popup_window_until('Notice100315','priden100315','201003262359','/renewal/popup/androidphone_popup.htm','Notice100315','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=375,height=423,top=50,left=670');
 //CME¿¬°è ±Û·Î¹ú ½ÃÀå °Å·¡½Ã°£ º´°æ¾È³»
 //popup_window_until('Notice100329','priden100329','201004022359','/renewal/popup/100329_pop.html','Notice100329','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=350,height=470,top=50,left=670');
 //¾Èµå·ÎÀÌµåÆù
// popup_window_until('Notice100405','priden100405','201004122359','/renewal/popup/androidphone_popup0405.htm','Notice100405','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=375,height=423,top=50,left=670');
 //SAY
 //popup_window_until('Notice100423','priden100423','201004302359','/renewal/popup/say_popup.htm','Notice100423','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=280,height=355,top=50,left=50');
 //ÅõÀÚ´ëÈ¸
// popup_window_until('Notice100427','priden100427','201005072359','/renewal/popup/popup_100427.htm','Notice100427','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=560,height=350,top=50,left=50');

 //2G Á¾·á
 //popup_window_until('Notice100430_1','priden100430_1','201005312359','/renewal/popup/popup_100430.html','Notice100430_1','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=281,height=350,top=50,left=50');
 //º½¸ÂÀÌ
 //popup_window_until('Notice100430_2','priden100430_2','201005102359','/renewal/popup/popup_event_100430.html','Notice100430_2','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=561,height=350,top=50,left=340');
 //¾Èµå·ÎÀÌµå
 //popup_window_until('Notice100510','priden100510','201005312359','/renewal/popup/popup_event_100510.html','Notice100510','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=561,height=350,top=50,left=340');
 //say º½¸ÂÀÌ ÀÌº¥Æ®
 //popup_window_until('Notice100512','priden100512','201005312359','/renewal/popup/say_pop.html','Notice100512','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=280,height=350,top=50,left=50');
 
 //½º¸¶Æ® & ¾Èµå·ÎÀÌµåÆù
 //popup_window_until('Notice100630','priden100630','201007122359','/renewal/popup/popup_event_100630.html','Notice100630','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=561,height=350,top=50,left=50');
  //¼¼ÀÌÁ¾¸ñ»ó´ãÆË¾÷
  //popup_window_until('Notice100601_1','priden100601_1','201006312359','/renewal/popup/popup_20100601.html','Notice100601_1','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no, width=280,height=351,top=50,left=620');
  //¿õÁø¿¡³ÊÁö
  //popup_window_until('Notice100621','priden100621','201006222359','/renewal/popup/popup_0621.htm','Notice100621','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no, width=280,height=351,top=50,left=620');
  //Åë±×ÄÉ save
  //popup_window_until('Notice100712','priden100712','201010312359','/renewal/popup/popup_event_100712.html','Notice100712','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=280,height=350,top=50,left=50');
  //Åë±×ÄÉ save + ÀÚ¹®Çü ·¦
  //popup_window_until('Notice100723','priden100723','201008062359','/renewal/popup/popup_event_100723.html','Notice100723','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=561,height=350,top=50,left=50');
  //Åë±×ÄÉ save + ÀÚ¹®Çü ·¦
  //popup_window_until('Notice100723','priden100723','201008312359','/renewal/popup/popup_event_100804.html','Notice100723','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=561,height=350,top=50,left=50');
  //ÀÌÆ®·¹ÀÌµå
  //popup_window_until('Notice100830','priden100830','201009012359','/renewal/popup/popup_0830.html','Notice100830','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=280,height=350,top=50,left=50');
  //ÁÖ¹®Âø¿À¹æÁö
  popup_window_until('Notice100901','priden100901','201009062359','/renewal/popup/popup_0901.html','Notice100901','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=280,height=350,top=50,left=50');
  //SK ±ÝÀ¶ ¼­ºñ½º ÆË¾÷
  //popup_window_until('Notice100901_1','priden100901_1','201009062359','/renewal/popup/sknpopup_0901.html','Notice100901_1','toolbar=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=278,height=350,top=50,left=345');
	/**********************************************************/
	/* ¡ÚÆË¾÷Ãß°¡½Ã Áö³­ ÆË¾÷Àº ÇÊÈ÷ ÁÖ¼®À¸·Î ¸·À»°Í !      ¡Ú*/
	/**********************************************************/
}

////////////////ÆË¾÷°øÁö end///////////////////////
//-->
 
