// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag("defaults")

// SHOW/HIDE LAYERS
function ShowNewLayer(theshown, thehidden, thehidden2) {
    if(theshown == 'login_artist') {
        document.getElementById('login_type_text').innerHTML = 'composers';    
    } else {
        document.getElementById('login_type_text').innerHTML = 'listeners';    
    }   
    // alert(theshown);
    if(document.getElementById(theshown).style.display == 'block'){
        if (theshown == 'login_artist' || theshown == 'login_listener'){
            // alert('passed.');
        } else {
            document.getElementById(theshown).style.display = 'none';
        }
    } else {
        document.getElementById(theshown).style.display = 'block';
    }
    
    if(thehidden){
        document.getElementById(thehidden).style.display = 'none';
    }
    
    if(thehidden2){
        document.getElementById(thehidden2).style.display = 'none';
    }
}