function searchMaemul () {
	srchform = document.forms.maemul;
	
	//°Ë»ö¾î È®ÀÎ
	if (srchform.keyword.value == "") {
		alert ("µ¿À» ÀÔ·ÂÇØ ÁÖ¼¼¿ä");
		srchform.keyword.focus();
		return false;
	}
	if ((srchform.keyword.value).indexOf("µ¿ÀÔ·Â") != -1) {
		alert ("µ¿À» ÀÔ·ÂÇØ ÁÖ¼¼¿ä");
		srchform.keyword.value = "";
		srchform.keyword.focus();
		return false;
	}
	
	srchform.action  = "http://m-realty.chosun.com/svc/realty/sise/list_sell.html";
	srchform.submit();
}

function clearKeywordMaemul (obj) {
	obj.value = "";
}

document.write ("<form name=maemul method=post onSubmit='return searchMaemul()' style='margin:0'>");
document.write ("<table width='240' border='0' cellspacing='0' cellpadding='0'>");
document.write ("  <tr><td width='54'><img src='http://businesstv.chosun.com/images/200801/money_main_17.jpg' width='73' height='28'></td>");
document.write ("    <td background='http://businesstv.chosun.com/images/200801/money_main_18.jpg'>"); 
document.write ("      <table border='0' cellspacing='0' cellpadding='0'>");
document.write ("       <tr><td style='padding:0 0 0 3;'>"); 
document.write ("            <input type='text' name='keyword' size='14' value='µ¿ÀÔ·Â' onclick='javascript:clearKeywordMaemul(this);'></td>");
document.write ("          <td><input type=image src='http://businesstv.chosun.com/images/200801/bt_search3.gif' width='36' height='18' border='0' style='margin:0 6 0 6;'></td>");
document.write ("        </tr></table></td></tr></table>");
document.write ("</form>");
