function photo_open(link, width, height)
{
  var photoWindow;

  photoWindow = window.open(link,"photoviewer",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,left=0,top=0,width='+width+',height='+height);
  photoWindow.resizeTo(width,height);
  photoWindow.focus();
}


function openDescription(URL) 
{
  URL = "description.php?job_index=" + URL;

  dir_win = window.open(URL,'description','width=460,height=185,left=0,top=0');
  dir_win.focus();
}