function get_site(url,loc) {
  if(basetarget == "_top") {top.location = (url); return;}
  f = typeof loc;
  if((f == "undefined") || (f == "null") || (f == "")) {loc = "";}
  if((loc == "")||(loc == 0)) {
    if(frametarget == 0) {parent.parent.frames[1].location = (url);}
    else {top.location = (url);}
  }
  else if(loc == 1) {parent.frames[0].location = (url);}
  else if(loc == 2) {parent.frames[1].location = (url);}
  else if(loc == 3 || loc == 4) {top.location = (url);}
}
    
function page_loader(num) {
  first_char = num.charAt(0);
  if(first_char == "h") {
    filename = num;
    location.replace(filename);
    return;
  }
  else {
    if(num == "88") {filename = "gallery1_frame.htm";}
    else {filename = "gallery" + (num) + "_frame.htm";}
  }
  location.replace (filename);
}
