
//* »óÇ° ÄÚµå ÀÔ·ÂÀ¸·Î ÇØ´ç »óÇ° ºä ÆäÀÌÁö·Î ÀÌµ¿½ÃÅ°±â */
function goodsview(goodscode){
	category = goodscode.substring(0,1);
	location.href = "/auction/goods_view.php?category=" + category + "&code=" + goodscode;
}

//* ÀÚµ¿ Æ÷Ä¿½º ÁÖ±â */
	function autoBlur(){
		if(event.srcElement.tagName == "A" || event.srcElement.tagName == "IMG"
				|| (event.srcElement.tagName == 'INPUT' && event.srcElement.type == 'image')){
			document.body.focus(); 
		}
	}

	document.onfocusin=autoBlur; 
/******************************************************************************************/

//* »óÅÂÇ¥½ÃÁÙ ¼³Á¤ÇÏ±â */
	function status_init(){
		s = '¾î¼­¿À¼¼¿ä! Àü¹® °æ¸Å »çÀÌÆ® - Äð°æ¸Å -';
		window.defaultStatus = s;

		//window.setTimeout("status_str(s)",100);
	}

	function status_str(s){
		window.status = s;
	}

	window.onload = status_init;

//****************************************************************************************/
