// JavaScript Document
//pop up code
function PopDetails(theWidth,theHeight,theURL){
   xpos = Math.round((screen.width/2)-(theWidth/2)-13);
   ypos = Math.round((screen.height/2)-(theHeight/2));    
   FullDetailWin = window.open(theURL,'FullDetailWin', 'width='+theWidth+',height='+theHeight+'location=no,menubar=no,personalbar=no,resizable=no,screenX=' + xpos + ',screenY=' + ypos + ',left=' + xpos + ',top=' + ypos + ',locationbar=no,scrollbars=no,directories=no,statusbar=no,toolbar=no');
   FullDetailWin.close();                                  
   FullDetailWin = window.open(theURL,'FullDetailWin', 'width='+theWidth+',height='+theHeight+'location=no,menubar=no,personalbar=no,resizable=no,screenX=' + xpos + ',screenY=' + ypos + ',left=' + xpos + ',top=' + ypos + ',locationbar=no,scrollbars=no,directories=no,statusbar=no,toolbar=no');                                 
   FullDetailWin.focus();                                                               
}