fires when the popup window is being shown
| id | string|number | the id of the item that invokes a popup opening (when popup is attached to a toolbar or a form) | 
myPop.attachEvent("onShow", function(id){
    console.log("The popup window is visible");
});
			Back to top