function resize(img) {
  if(img.width > 1000) {
  img.style.height = parseInt(img.height * 1000 / img.width);
  img.style.width = 1000;
		}
	img.style.position = "static"; 
	img.style.visibility = "visible";
}
function bookmark(url,title){
  if ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4)) {
  window.external.AddFavorite(url,title);
  } else if (navigator.appName == "Netscape") {
    window.sidebar.addPanel(title,url,"");
  } else {
    alert("Press CTRL-D (Netscape) or CTRL-T (Opera) to bookmark");
  }
}
if (top.location != self.location) {
top.location = self.location.href
}