/* Copyright (c) 2009 Smileweb co., Ltd.  All rights reserved.  www.smileweb.co.kr */

function NoticeTop5(stage)
{				
	new ajax.xhr.Request("/main/main_transaction/notice_top5.php", 'stage='+stage , NoticeTop5SetList, 'GET');
}


function NoticeTop5SetList(xmlDoc)
{
	var code = getNodeValue( xmlDoc.getElementsByTagName( 'code' ) );

	if (code == 'success') 
	{
		ChildNodesDel("noticeList");		
		
		var loaddata = eval( "(" + getNodeValue( xmlDoc.getElementsByTagName ( 'data' ) ) + ")" );				
		
		for(var i = loaddata.length-1; i >= 0; i--)
		{						
			NoticeTop5makeRow(loaddata[i], i);				
		}
	}
}

function NoticeTop5makeRow(data, i)
{
	var obj = document.getElementById("noticeList");	
	var li = document.createElement("LI");
    
	if( obj != null ) { //ywlee@0129

		if (data.stage=='M')
		{
				li.innerHTML = "<a href='/minishop/minishop_notice_read.php?type=notice&num="+data.num+"&stage=M&head="+encodeURIComponent("미니샵 공지사항")+"'>"+data.title+"</a>";
		}
		else
		{
			li.innerHTML = "<a href='/callcenter/qna_read.php?type=notice&num="+data.num+"&stage=C&head="+encodeURIComponent("공지사항")+"'>"+data.title+"</a>";
		}
	
		obj.appendChild(li);

	}
	
}

