var s,s2,s3,timer;
			function init()
			{
				s=getid("gund1");
				s2=getid("gund2");
				s3=getid("gund3");
				s3.innerHTML=s2.innerHTML;
				timer=setInterval(mar,30)
			}
			function mar()
			{
				if(s2.offsetWidth<=s.scrollLeft)
				{
					s.scrollLeft-=s2.offsetWidth;
				}
				else
				{
					s.scrollLeft++;
				}
			}
			function getid(id)
			{
				return document.getElementById(id);
			}
			window.onload=init;		
			

function clearCode()
{
	if(document.formStock.tbStockCode.value=="¹ÉÆ±´úÂë"||document.formStock.tbStockCode.value!="")
		{
			document.formStock.tbStockCode.value="";
		}
}