var numPic;
var numSpot;
var picStash = new Array();
picStash[0]="contents/pictures/icons/about.gif";
picStash[1]="contents/pictures/icons/about2.gif";
picStash[2]="contents/pictures/icons/affiliations.gif";
picStash[3]="contents/pictures/icons/affiliations2.gif";
picStash[4]="contents/pictures/icons/product.gif";
picStash[5]="contents/pictures/icons/product2.gif";
picStash[6]="contents/pictures/icons/archive.gif";
picStash[7]="contents/pictures/icons/archive2.gif";
picStash[8]="contents/pictures/icons/contact.gif";
picStash[9]="contents/pictures/icons/contact2.gif";
picStash[10]="contents/pictures/icons/home.gif";
picStash[11]="contents/pictures/icons/home2.gif";
picStash[12]="pictures/icons/back.gif";
picStash[13]="pictures/icons/back2.gif";
picStash[14]="pictures/icons/about.gif";
picStash[15]="pictures/icons/about2.gif";
picStash[16]="pictures/icons/affiliations.gif";
picStash[17]="pictures/icons/affiliations2.gif";
picStash[18]="pictures/icons/product.gif";
picStash[19]="pictures/icons/product2.gif";
picStash[20]="pictures/icons/archive.gif";
picStash[21]="pictures/icons/archive2.gif";
picStash[22]="pictures/icons/contact.gif";
picStash[23]="pictures/icons/contact2.gif";
picStash[24]="pictures/icons/home.gif";
picStash[25]="pictures/icons/home2.gif";
picStash[26]="../pictures/icons/back.gif";
picStash[27]="../pictures/icons/back2.gif";
picStash[28]="../pictures/icons/product.gif";
picStash[29]="../pictures/icons/product2.gif";
picStash[30]="../pictures/icons/next.gif";
picStash[31]="../pictures/icons/next2.gif";

function holdPic(numSpot,numPic){
document.images[numSpot].src= picStash[numPic];

}
function NewWindow(x){
var pic;
var slash;
var temp="";
pic=document.getElementById(x).src;

for(var i=0;i<pic.length;i++){
    
    if((pic.search("/"))!=(-1)){
     
      slash=pic.indexOf("/");
      
      var toppic=pic.length;
      var rmstring=pic.substring(0,slash+1);
      pic=pic.replace(rmstring,"");
   
}
      }
pic="knife_frames/pics/"+pic;

var win=window.open("viewer.html");
swindow="<html><head><style type='text/css'>img{width:100%;position:absolute;top:0;left:0;}</style></head><body><img src="+pic+" alt='picture of a damascus knife' /></body></html>";

win.document.write(swindow);
}