pointout.js 291 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 function alertStyle(values){ try{ window.top.Dialog.alert(values); }catch(exception){ Dialog.alert(values); } } function confirmStyle(values,func){ try{ window.top.Dialog.confirm(values,func); }catch(exception){ Dialog.confirm(values,func); } }