// JS used by SSC 2001-2003, 2005-2006 and top level  */

// Onload check if screen is narrow and if so change style sheet
function wide(arg){
if (screen.width < 500) {
list=document.getElementsByTagName("link");
for (j=0;j<list.length;j++) {
  if (list[j].title == "narrow") {list[j].disabled = false;}
  if (list[j].title == "wide")   {list[j].disabled = true ;}  } } }


// Shrink big image for narrow view ports
function pretty() {
var w=window.innerWidth;
if (w<900) {
  document.getElementById("pix").width=document.getElementById("pix").width*w/1800 ;
  document.getElementById("pix").height=document.getElementById("pix").height*w/1800 ;}
return ;}




// 06:00:37 PM Tue, Mar 19 2013