function giveempictures(putithere, givethisone) {
    if (document.getElementById) {
    var switchup=document.getElementById(putithere).style;
    if(switchup.display =="block") {
    switchup.display="none";
    } else {
    switchup.display="block";
    switchup.background="url(../media/images/"+ givethisone +".jpg) no-repeat top left";
    }
    return false;
    } else {
    return true;
    }
    }


function giveembgs(putbghere, givethisbg) {
    if (document.getElementById) {
    var switchupbg=document.getElementById(putbghere).style;
    switchupbg.background="url(../media/images/"+ givethisbg +".jpg) no-repeat top left";
    /*if(switchup.display =="block") {
    switchup.display="none";
    } else {
    switchup.display="block";
    switchup.background="url(../media/images/"+ givethisone +".jpg)";
    }
    */
    return false;
    } else {
    return true;
    }
    }
    
    
function giveemdetails(putthemhere) {
    if (document.getElementById) {
    var switchup=document.getElementById(putthemhere).style;
    if(switchup.display =="block") {
    switchup.display="none";
    } else {
    switchup.display="block";
    }
    return false;
    } else {
    return true;
    }
    }