function ShowCallBack(opt) {
opt.obj.close();
}
function ShowAlert()
{
var pop=new txooo.ui.Popup({ contentType:4,isReloadOnClose:false,width:340,height:100});
pop.setContent("title","경고 경고 상자 예");
pop.setContent("alertCon", "경고 대화 상자 내용");
pop.setContent("callBack", ShowCallBack);
pop.setContent("parameter", { id: "divCall ", str: "확인을 클릭하면 표시되는 문자열", obj: pop });
pop.build();
pop.show();
}