//##################################### »óÅÂ¹Ù Ç×»ó ¿Ï·á(ie) ###################################

function hidestatus(){ 
	window.status="Done" 
	return true 
} 
if (document.layers) 
	document.captureEvents(Event.mouseover | Event.mouseout) 
	document.onmouseover=hidestatus 
	document.onmouseout=hidestatus 
function status_message(){
	window.status = "Done";
}
setInterval("status_message()",100)

//*ÇÁ¸°ÅÍ ¿µ¿ª¼³Á¤ 
function printIt(printThis)  {
	win = window.open();
	self.focus();
	win.document.open();
	win.document.write('<'+'html'+'><'+'head'+'>');
	win.document.write("<link rel=StyleSheet href=/css/layout.css type=text/css>");
	win.document.write('<'+'/'+'head'+'><'+'body'+'>');
	win.document.write(printThis);
	win.document.write('<'+'/'+'body'+'><'+'/'+'html'+'>');
	win.document.close();
}


//*´ñ±Ûon off±â´É
function toggleLayer(whichLayer) {
	var elem, vis;
	if(document.getElementById) 
	elem = document.getElementById(whichLayer);
	else if(document.all) 
	elem = document.all[whichLayer];
	else if(document.layers) 
	elem = document.layers[whichLayer];
	vis = elem.style;
	if(vis.display==''&&elem.offsetWidth!=undefined&&elem.offsetHeight!=undefined)
	vis.display = (elem.offsetWidth!=0&&elem.offsetHeight!=0)?'block':'none';
	vis.display = (vis.display==''||vis.display=='block')?'none':'block';
}

//*ÆË¾÷¶ç¿ì±â
//*(µî·ÏÆû ¸ÞÀÏÁßº¹Ã¼Å© Ã¢)
function popup(){
 cw=430;
 ch=250;
 sw=screen.availWidth;
 sh=screen.availHeight;
 px=(sw-cw)/2;
 py=(sh-ch)/2;
test=window.open('/00_member/check.asp','CheckID','left='+px+',top='+py+',width='+cw+',height='+ch+',toolbar=no,menubar=no,status=no,scrollbars=no,resizable=no');
}




function clickLink(){
    top.location = links[i]
}

function descript(){
    window.status = description[i]
}