function popupApp(desktopURL,windowName,width,height) {
   var win = window.open(desktopURL, windowName, "status=yes,menubar=yes,scrollbars=yes,width="+width+",height="+height+",resizable=yes,left=0,top=0" );
   win.focus();
}

function popupApp2(desktopURL,windowName,width,height) {
   var win = window.open(desktopURL, windowName, "status=yes,menubar=no,scrollbars=yes,width="+width+",height="+height+",resizable=yes,left=0,top=0" );
   win.focus();
}
