/* Copyright (c) 2009 Smileweb co., Ltd.  All rights reserved.  www.smileweb.co.kr */
var newMiniShopKey;
var bestMiniShopKey;

if ( window.addEventListener ){	
	window.addEventListener( "load", MakePlanList, false )
} else{	
	window.attachEvent( "onload", MakePlanList )	
}

function MakePlanList()
{
	new ajax.xhr.Request("/minishop/minishop_transaction/plan_list.php", '', SetPlanList, 'GET');
}

function SetPlanList(xmlDoc)
{
	var code = getNodeValue( xmlDoc.getElementsByTagName( 'code' ) );

	if (code == 'success') 
	{
		ChildNodesDel("planList");		
		
		var loaddata = eval( "(" + getNodeValue( xmlDoc.getElementsByTagName ( 'data' ) ) + ")" );
				
		var obj = $('planList');
		for(var i = 0; i < loaddata.length; i++)
		{	
			var li = document.createElement("LI");
			li.innerHTML = '<a href="/product/plan_detail.php?num='+loaddata[i].num+'"><strong>'+loaddata[i].miniShopName+'</strong>ㅣ '+loaddata[i].title+'</a>';
			obj.appendChild(li);
		}						
	}
}

function GetNewMiniShop(config)
{
	newMiniShopKey = config;
	new ajax.xhr.Request("/minishop/minishop_transaction/new_minishop5.php", '', SetNewMiniShop, 'GET');
}

function SetNewMiniShop(xmlDoc)
{
	var code = getNodeValue( xmlDoc.getElementsByTagName( 'code' ) );

	if (code == 'success') 
	{
	
		var loaddata = eval( "(" + getNodeValue( xmlDoc.getElementsByTagName ( 'data' ) ) + ")" );

		new MiniShopForm(loaddata,newMiniShopKey.m_shopListId,newMiniShopKey.m_shopListForm);							
	}
}

function GetBestMiniShop(config)
{	
	bestMiniShopKey = config;
	new ajax.xhr.Request("/minishop/minishop_transaction/best_minishop5.php", '', SetBestMiniShop, 'GET');
}

function SetBestMiniShop(xmlDoc)
{
	var code = getNodeValue( xmlDoc.getElementsByTagName( 'code' ) );

	if (code == 'success') 
	{
	
		var loaddata = eval( "(" + getNodeValue( xmlDoc.getElementsByTagName ( 'data' ) ) + ")" );

		new MiniShopForm(loaddata,bestMiniShopKey.m_shopListId,bestMiniShopKey.m_shopListForm);							
	}
}


function View_(num)
{
	if (num == 1) {
		$('minibest1').src = '/images/minishop/tab_minibest1_ov.gif';
		$('minibest2').src = '/images/minishop/tab_minibest2_off.gif';
		$('bestMiniShop5').style.display = '';
		$('sellerlList').style.display = 'none';		
	}else{
		$('minibest1').src = '/images/minishop/tab_minibest1_off.gif';
		$('minibest2').src = '/images/minishop/tab_minibest2_ov.gif';
		$('bestMiniShop5').style.display = 'none';
		$('sellerlList').style.display = '';
	}
}

function pop_help_buy1()
{
	window.open('/popup/pop_help_sell1.php','','toolbar=no, width=600, height=700, top=10, left=10, scrollbars=yes, resizable=yes');	
}