

// small windows for images
function popupPanorama(){
window.open("../lake-tahoe/popPanorama.html", "", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=800,height=270,top="+((screen.height - 270) / 2)+",left="+((screen.width - 800) / 2));
}

// small windows
function openWinFlash() { myWin=open("http://activecore.org/cirs-sqs/circles-squares.swf","displayWindow","width=400,height=300,status=no,titlebar=no,toolbar=no,menubar=no,directories=no,location=no,scrollbars=no,personalbar=no, top="+((screen.height - 300) / 2)+",left="+((screen.width - 400) / 2));
}


// External links

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;

