
function hide(id) {
document.getElementById(id).style.visibility='hidden';
}

function show(id) {
document.getElementById(id).style.visibility='visible';
}

function load(id,imageloc,name) {
document.getElementById(id).src=imageloc;
document.getElementById('namer').innerHTML = name;
}

function resizeH(id,heightNew) {
document.getElementById(id).height=heightNew;
}

function resizeW(id,widthNew) {
document.getElementById(id).width=widthNew;
}

function slideshow() {
window.open("./slide.php?artist='.$artist.'&file='.$file.'", "SLIDE", "width=640,height=640,height=660,toolbar=0,scrollbars=0,resizable=0,directories=0,status=0,menubar=0");
}

function retitle(newname) {
document.title="Light House Ankara :: ".newname;
}
