function searchcheck(form)
{
    
    if (form.searchKey.value == "")
    {
        alert("ΗλΚδΘλΉΨΌόΧΦ");
        return false;
    }
    
    form.action = form.searchUrl.value;
    form.inputstr.value = form.searchKey.value; 
    //alert("²βΚΤ");	
	return true;
    //form.submit();
}