function searchSise () {
	srchform = document.forms.sise;
	
	//°Ë»ö¾î È®ÀÎ
	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.html";
	srchform.submit();
}

function clearKeywordSise (obj) {
	obj.value = "";
}

document.write ("<form name=sise method=post onSubmit='return searchSise()' 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_8.jpg' width='73' height='34'></td>");
document.write ("<td background='http://businesstv.chosun.com/images/200801/money_main_9.jpg'>"); 
document.write ("<table border='0' cellspacing='0' cellpadding='0'>");
document.write ("<tr> <td style='padding:0 0 0 3;'><input type='text' name='keyword' size='14' value='µ¿+¾ÆÆÄÆ®' onclick='javascript:clearKeywordSise(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>");
