
This function allow you to send a message to all servicewindows and will be caught by the event handler.
This will allow you to trigger events in the service windows based on your code.
You can also use this to send messages between servicewindows.
function deEventProcessor(eventname,arg1,arg2,arg3,arg4) {
//alert(eventname) ;
$('#myinfo').append(eventname+"|"+arg1+"|"+arg2+"|"+arg3+"|"+arg4+"\n") ;
switch(eventname) {
case "deListTable" :
break;
default:
}
}