function show_sub(id,total){
	document.getElementById('m_'+id).style.display='block';
}

function hide_sub(total){
	for(i=1;i<=total;i++){
		document.getElementById('m_'+i).style.display='none';
	}
}

function send_query(){
	document.getElementById('search').submit();
}

function CompanyRegisterBox(){
	var company = document.getElementById('escl_companyname_area');
	var nip = document.getElementById('escl_nip_area');
	if(document.getElementById('radio_company').checked){
     company.style.display='block';
		 nip.style.display='block';
	} else {
		company.style.display='none';
		nip.style.display='none';	
	}	
}
function changeShop(id,total){
   clearTimeout(mytime);
   if(document.getElementById('shop_1')!=null){
   for(var i=1;i<=total;i++){
		document.getElementById('shop_'+i).style.display='none';
		document.getElementById('shop_ch_'+i).style.textDecoration='none';
	}
	document.getElementById('shop_'+id).style.display='block';
	document.getElementById('shop_ch_'+id).style.textDecoration='underline';
	
   mytime=window.setTimeout("changeShop2("+id+","+total+")",10000);
   }
}
function changeShop2(id,total) {
   if(document.getElementById('shop_1')!=null){
   for(var i=1;i<=total;i++){
		document.getElementById('shop_'+i).style.display='none';
		document.getElementById('shop_ch_'+i).style.textDecoration='none';
	}
	document.getElementById('shop_'+id).style.display='block';
	document.getElementById('shop_ch_'+id).style.textDecoration='underline';
	
   if(id>=total)id=0;
   id=id+1;

   mytime = window.setTimeout("changeShop2("+id+","+total+")",5000);
   }
}
window.onload = function(){changeShop2(1,4);}
