/*-----------------------------------------------------------------------------------------------*/
//  Functionality for popups  (TODO  designer needs to check it - should we used modal dialogs ?)
/*-----------------------------------------------------------------------------------------------*/

function openPopup (url,name) {
 popup = window.open(url, name, "width=800,height=600,status=yes,scrollbars=yes,resizable=yes");
 popup.focus();
}