// JAVASCRIPTS
// -----------

// PREVIEW FILM IMAGE
function preview( filename ) {
  document.images["film-image"].src = filename
}

// OPEN LINK IN A NEW WINDOW
function newindow(src) {
    var theWindow = window.open(src.getAttribute('href'), '_blank', '');
    theWindow.focus();
    return theWindow;
}

// SHOW EMPLOEE INFO
function showEmploee(elem_id){
  hideEmploees();
  if(document.getElementById(elem_id))
    document.getElementById(elem_id).style.display = "block";
}

function hideEmploees(){
  for( var i = 1; i <= 8; i++ )
    if(document.getElementById(( 'emploee-'+i )))
      document.getElementById(( 'emploee-'+i )).style.display = "none";
}