scrollbars= document.styleSheets[0].addRule("html", "behavior: url(scrollbars.htc)", 0);

function externalLinks() { 
 if (!document.getElementsByTagName) return; 
 var anchors = document.getElementsByTagName("a"); 
 for (var i=0; i<anchors.length; i++) { 
   var anchor = anchors[i]; 
   if (anchor.getAttribute("href") && 
       anchor.getAttribute("rel") == "external") 
     anchor.target = "_blank"; 
 } 
} 
window.onload = externalLinks;
function disableStyle() {
if (!document.getElementsByTagName) return; 
 var anchors = document.getElementsByTagName("link"); 
 for (var i=0; i<anchors.length; i++) { 
   var anchor = anchors[i]; 
   if (anchor.getAttribute("rel") == "stylesheet") 
     anchor.disabled = "true";  }
 }
 
function hostname() { document.write (document.title) }

function callImage(href,title,w,h) {
window.open('imageshow.htm?source='+ href + '&amp;alt=' + title,'Image','scrollbars=yes,status=no,width=' + w + ',height=' + h +',left=10,top=10,resizable=yes,dependent=yes,copyhistory=yes,toolbar=yes'); 
}

function popinfo(href,title,w,h) {
window.open(href,title,'scrollbars=yes,status=no,width=' + w + ',height=' + h +',left=10,top=10,resizable=yes,dependent=yes,copyhistory=yes,toolbar=yes'); 
}
