        function openJobApplication(jobid,theWidth,theHeight){
            var theTop=(screen.height-theHeight)/2;
            var theLeft=(screen.width-theWidth)/2;
            var features='height='+theHeight+',width='+theWidth+',top='+theTop+',left='+theLeft+",scrollbars,resizable";
            var url = "#formularUrl#&windowOpen=1&jobid=" + jobid;
            var theWin = window.open(url,"JobDetailWin",features);
            if(!theWin.opener) theWin.opener = self;
            if(theWin.focus) theWin.focus();
        }

