 

/* Background Image Cache Bug Fix */
(function() { /*Use Object Detection to detect IE6*/
	var m = document.uniqueID			/*IE*/
			&& document.compatMode		/*>=IE6*/
			&& !window.XMLHttpRequest	/*<=IE6*/
			&& document.execCommand;
	try {
		if(!!m) m("BackgroundImageCache", false, true); /* = IE6 only */
	} catch(e) {};
})();

// ¿¡·¯¸Þ¼¼Áö
var formError = {}; 
$(function() { 
	// ¿¡·¯ Ãâ·Â, Æ÷Ä¿½Ì
	$.each(formError, function(k, v) {
		alert(v);
		$('#'+k).select();
	}); 
});
 
 

function tgl(v){ 
	var a=document.getElementById(v).style.display;
	document.getElementById(v).style.display=(a=='none')?'block':'none';
}
 
 
 
function autoTab(frm,inputname,nextname,cnt) {
 
 var fstfield_value  = eval("document."+frm+"."+inputname+".value") ; 
 var scdfield   = eval("document."+frm+"."+nextname ) ;
 var scdfield_value  = eval("document."+frm+"."+nextname+".value") ;
 
  
  if (fstfield_value.length>=cnt) {
	 scdfield.focus();
 }
}

function allsearch() {
	if(formmain.search_value.value==""){
		alert("°Ë»ö¾î¸¦ ÀÔ·ÂÇÏ¼¼¿ä");
		formmain.search_value.focus();
		return false;
	}
		formmain.submit()
}

function nextaction()
{ 
 if(event.keyCode == 13)
	 if(formmain.search_value.value==""){
			alert("°Ë»ö¾î¸¦ ÀÔ·ÂÇÏ¼¼¿ä");
			formmain.search_value.focus();
			return  ;
		}
		 formmain.submit()
}

function CommDel(id) {
	 if(confirm("µ¡±ÛÀ» »èÁ¦ÇÏ½Ã°Ú½À´Ï±î? »èÁ¦ÇÏ½Ã·Á¸é È®ÀÎÀ» Å¬¸¯ÇÏ¼¼¿ä")){
		  location.href="comment_delete.php?id="+id;
	  }else alert('Ãë¼Ò ÇÏ¿´½À´Ï´Ù.'); 

}

function del(code,id) {
	 if(confirm("µî·Ï±ÛÀ» »èÁ¦ÇÏ½Ã°Ú½À´Ï±î? »èÁ¦ÇÏ½Ã·Á¸é È®ÀÎÀ» Å¬¸¯ÇÏ¼¼¿ä")){
		  location.href="delete_action.php?code="+code+"&id="+id;
	  }else alert('Ãë¼Ò ÇÏ¿´½À´Ï´Ù.'); 

}
function delracing(code,id) {
	 if(confirm("µî·Ï±ÛÀ» »èÁ¦ÇÏ½Ã°Ú½À´Ï±î? »èÁ¦ÇÏ½Ã·Á¸é È®ÀÎÀ» Å¬¸¯ÇÏ¼¼¿ä")){
		  location.href="/racing/delete_action.php?code="+code+"&id="+id;
	  }else alert('Ãë¼Ò ÇÏ¿´½À´Ï´Ù.'); 

}

function buydel(code,id) {
	 if(confirm("Á¦Ç°±¸¸Å ¹®ÀÇ³»¿ë ±ÛÀ» »èÁ¦ÇÏ½Ã°Ú½À´Ï±î? »èÁ¦ÇÏ½Ã·Á¸é È®ÀÎÀ» Å¬¸¯ÇÏ¼¼¿ä")){
		  location.href="/member/delete_action.php?code="+code+"&id="+id;
	  }else alert('Ãë¼Ò ÇÏ¿´½À´Ï´Ù.'); 

}
function showdetail(id) {
	 dwin = window.open('detail.php?id='+id,'detail','width=400 height=600 scrollbars=yes');
	 dwin.focus();
}
function showdetail2(id) {
	 dwin = window.open('detail2.php?id='+id,'detail','width=400 height=600 scrollbars=yes');
	 dwin.focus();
}
function goedit(id) {
	 dwin = window.open('detail2_pre.php?id='+id,'detail','width=400 height=600 scrollbars=yes');
	 dwin.focus();
}
function viewlarge2(str,w,h,title){     
	var goodsImageview = document.getElementById("goodsImageview");
	 
 
	goodsImageview.src=str;
	goodsImageview.width=w;
//	goodsImageview.height=h;
	 
	document.getElementById ( "goodsContent" ).innerHTML = title;
}

function viewlarge(id,wd,ht) {
	 pwin = window.open('view.php?id='+id,'pdetail'+id,'width='+wd+ '  height='+ht  );
	 pwin.focus();
}

function viewlarge3(id,wd,ht) {
 
	 pwin = window.open('L_view.php?id='+id,'pdetail' ,'width=600   height=700 scrollbars=yes'   );
	 pwin.focus();
}
 
 function notice_setCookie( name, value, expiredays )
{
	var todayDate = new Date();
	todayDate.setDate( todayDate.getDate() + expiredays );
	document.cookie = name + "=" + escape( value ) + "; path=/; expires=" + todayDate.toGMTString() + ";"
}		
function notice_closeWin(name,value) 
{ 
	 
	notice_setCookie(name, value, 1); // 1=ÇÏ·íµ¿¾È °øÁöÃ¢ ¿­Áö ¾ÊÀ½
	 
	self.close(); 
		
}
