// all scripts in this file have been modified from their original format
info_handle = new Object;
info_ID = 0;

function info(w,h,t,l, url) {
  var loc = 'width=' + w + ',height=' + h + ',top=' + t + ',left=' + l;
  info_handle = window.open(url,"info",",,,,toolbar,scrollbars,resizable," + loc);
  if(parseInt(navigator.appVersion) >= 4){info_handle.window.focus();}
}


function bookmark(){
  if (document.all) {
    window.external.AddFavorite(document.location.href,document.title)
  }
}

function makeHomePage() {
	if (document.all){
	  document.body.style.behavior='url(#default#homepage)';
      document.body.setHomePage(document.location);
	}
}

function zoomWin(img) {
        var scrollbars = 0;
        var wOffset = 12;
        var hOffset = 30;
        var left = 0;
        var top = 0;
        var w = 150;
        var h = 250;
        if (screen) {
                left = screen.width - w;
        }
        var url = '/includes/zoom.html?' + img;
        var neuwinref=window.open(url, 'zoomwin', "width="+w+",height="+h+",left="+left+",top="+top+",locationbar=0,menubar=0,personalbar=0,status=0,resizable=1,scrollbars=0");
}

