// misc functions

function gotoArtist(selector) {
  // alert(selector.options[selector.selectedIndex]);
  location = "artist.php?artistid=" + selector.options[selector.selectedIndex].value;
}

function openArtEnlarge(id) {
  window.open('artenlarge.php?artid=' + id, 'artenlarged','scrollbars=no,width=620,height=540');
}

function openPictureEnlarge(id) {
  window.open('pictureenlarge.php?pictureid=' + id, 'pictureenlarged','scrollbars=no,width=620,height=540');
}

