Changeset 406
- Timestamp:
- 05/29/08 11:37:43
- Files:
-
- trunk/phpbms/common/javascript/common.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/phpbms/common/javascript/common.js
r404 r406 924 924 text+="<DIV align=\"right\"><button id=\"modalOK\" accesskey=\"o\" type=\"button\" class=\"Buttons\" onclick=\"closeModal()\" style=\"width:75px\"> ok </button></DIV>"; 925 925 showModal(text,"Alert",250); 926 926 927 927 var okButton = getObjectFromID("modalOK"); 928 okButton.focus(); 928 try{ 929 okButton.focus(); 930 }catch(er){ 931 // stupid IE 932 }//end try 929 933 } 930 934