﻿
/* FINDER TABS*/
function finderTab_Film(){
    
    document.getElementById('findFilm_Sub').style.fontWeight="bold";
    document.getElementById('findTheatre_Sub').style.fontWeight="normal";
    document.getElementById('Div1').style.backgroundImage='url(/App_Themes/standard/images/bgFinder_Tab01.gif)';
    document.getElementById('finderFilm_SubFilm_Film').style.display="block";
    document.getElementById('finderFilm_SubFilm_Theatre').style.display="none";
    document.getElementById('finderFilm').style.display="block";
    
}
function finderTab_SubFilm_Film(){
    
   document.getElementById('findFilm_Sub').style.fontWeight="bold";
    document.getElementById('findTheatre_Sub').style.fontWeight="normal";
    document.getElementById('finderFilm').style.display="block";
    document.getElementById('finderFilm_SubFilm_Film').style.display="block";
    document.getElementById('finderFilm_SubFilm_Theatre').style.display="none";
    
}
function finderTab_SubFilm_Theatre(){
    
    document.getElementById('finderFilm').style.display="block";
    document.getElementById('findFilm_Sub').style.fontWeight="normal";
    document.getElementById('findTheatre_Sub').style.fontWeight="bold";
    document.getElementById('finderFilm_SubFilm_Film').style.display="none";
    document.getElementById('finderFilm_SubFilm_Theatre').style.display="block";
    document.getElementById('finderFilm').style.display="block";
    
}


