
function showjob(){
						   document.getElementById("bodyright").innerHTML =  "<img src=images/loading.gif>";
							filename = "showjob.php";
							ajaxCallback=updatejob;
							ajaxRequest(filename);
}

function updatejob(){
   if(ajaxreq.readyState == 4){  
     document.getElementById("bodyright").innerHTML =  ajaxreq.responseText;
//	 document.getElementById("loading").innerHTML =  "<img src=images/loaded.gif>";
   }
}

function popup(url,name,windowWidth,windowHeight){       
    myleft=(screen.width)?(screen.width-windowWidth)/2:100;    
    mytop=(screen.height)?(screen.height-windowHeight)/2:100;      
    properties = "width="+windowWidth+",height="+windowHeight;   
    properties +=",scrollbars=yes, top="+mytop+",left="+myleft;      
    window.open(url,name,properties);   
}   

