//?
function home(){location.href="../index.asp";}
function about(){location.href="omutotomato.asp";}
function customer(){location.href="vote.asp";}
function menu(){location.href="menu.asp";}
function event(){location.href="ing_list.asp";}
function store(){location.href="tradecenter.asp";}

//셀렉트 스크립트
function setSelectBox(selName)
{
	sel = eval("document.all."+selName);

	borderColor = sel.bordercolor;
	selWidth = parseInt(sel.width);
	bgColor = sel.bgcolor;
	rectLeft = selWidth-2;
	spanWidth = selWidth;
	
	//span tag
	header  = "<span style='position:relative;margin-right:0px;";
	header += "width:"+spanWidth+";height:19px;border:1px solid "+borderColor+";background-color:"+bgColor+";'>\n";
	header += "<span style='position: absolute;left:0px;top:-1px;";
	header += "width:"+selWidth+";height:17px;clip:rect(2,"+rectLeft+",18,2);'>\n";
	
	footer = "</span></span>";

	sel.style.backgroundColor = bgColor;
	sel.style.width = selWidth;

	sel.outerHTML = header+sel.outerHTML+footer;

	//document.write("<xmp>"+header+sel.outerHTML+footer+"</xmp>");
}

//*큰이미지보기*/
function Large(Img){
window.open('popup_large.asp?Img='+Img+'','Photo','width=500,height=423,scrollbars=0,resizable=0');
}