1234567891011121314151617181920212223242526 |
- //toolbar call the js file
- if(typeof(logoutPrompt_text) == "undefined")
- {
- logoutPrompt_text = "logout from this Portal?" ;
- }
- if(typeof(winStatus_welcome_text) == "undefined")
- {
- winStatus_welcome_text = "Welcome login to EAS Portal.";
- }
- function logoutPrompt()
- {
- var obj = msgBox.showIndexAskMessageBox(msgBox.TYPE_ASK,logoutPrompt_text);
- if((obj!=null) && (obj.id=1)){
- return true;
- }else{
- return false;
- }
- }
- function clearWinStatus()
- {
- top.window.status = winStatus_welcome_text;
- }
|