function insertDate(component){
    	strPage = " /public/common/calendar.htm";
    	popTop=document.body.scrollTop+event.clientY;
    	popLeft=document.body.scrollLeft+event.clientX;
	strAttr = "resizable:no;toolbar:no;status:no;dialogWidth:206px;dialogHeight:188px;help:no;fullscreen:no;dialogTop:"+ popTop+";dialogLeft:"+popLeft+";";
	html = showModalDialog(strPage,"", strAttr);
	if (html==null){
	component.value= '';
	}else{
	component.value= html;
	}
}
function searchit(){
    //alert(document.all.personID.value);
    strPage = "../searchit.htm";
	popTop=document.body.scrollTop+event.clientY;
    	popLeft=document.body.scrollLeft+event.clientX;
	strAttr = "resizable:no;toolbar:no;status:no;dialogWidth:110px;dialogHeight:130px;help:no;fullscreen:no;dialogTop:"+ popTop+";dialogLeft:"+popLeft+";";
	html = showModalDialog(strPage,"", strAttr);
	if (html!=""){
	    document.all.personID.value=html;
	}else{
	    alert("ÇëÊäÈë¾¯ºÅ");
	}
}
