function enterkey(n) 
{
	if (event.keyCode==13) 
	{
		switch(n) 
		{
			case 1: Search_it(); break;
			case 2: Search_it_admin(); break;
		}
	}
}

function Search_it(){
	if ( search.value != '' ){ document.location.href=search_path.value+'&field='+field.value+'&search='+search.value+'&search_pre='+search_pre.value;}
	else{alert('°Ë»ö¾î¸¦ ÀÔ·ÂÇÏ¼¼¿ä.'); false;}
}

function view_it(id,num){ // º¸±â
	if ( num != '' ){ document.location.href=view_path.value+'&'+id+'='+num;}
}

function shot_cut(num){ // ¼ôÄÆ
	if ( num != '' ){ document.location.href=cut_path.value+num;}
}
function go_write(){ // ±Û¾²±â
	document.location.href=write_path.value;
}
// ¸¶¿ì½º¿À¹ö È¿°úÁÖ±â
function m_over(this_s,color){
	this_s.style.backgroundColor=color;
}
function m_out(this_s,color){
	this_s.style.backgroundColor=color;
}
