// JavaScript Document

function previewPic(sel) {
document.previewpic.src = 'images/'+ sel.options[sel.selectedIndex].value + ".jpg";
}
function showPic(sel) {
images = new Array();
images[1] = "images/forms/169.jpg";
images[2] = "images/forms/170.jpg";
images[3] = "images/forms/171.jpg";
images[4] = "images/forms/172.jpg";
images[5] = "images/forms/173.jpg";
images[6] = "images/forms/174.jpg";
images[7] = "images/forms/175.jpg";
images[8] = "images/forms/176.jpg";
images[9] = "images/forms/177.jpg";
images[10] = "images/forms/178.jpg";
window.location.href = images[sel.selectedIndex+1];
}

function OpenWin(FileToOpen,w,h){
      if (w=='' || w < 0 || w==null) w=600;
      if (h=='' || h < 0 || h==null) h=600;
              if (h >= window.screen.availHeight) h = window.screen.availHeight-100;
              if (w >= window.screen.availWidth) h = window.screen.availWidth-100;
              myWin=window.open(FileToOpen,"DisplayWindow", "status=no,toolbar=no,menubar=no,Directories=no,resizable=no,ScrollBars=no,location=no,width="+w+",height="+h);
              myWin.focus();            
}
