<!-- hide from old browsers
function showdate(){ today = new Date();
  year = today.getYear(); if (year<1000) year = year + 1900
  iday  = today.getDay(); day = "SunMonTueWedThuFriSat".substr(iday*3,3)
  imonth= today.getMonth(); month = "JanFebMarAprMayJunJulAugSepOctNovDec".substr(imonth*3,3)
  todayStr = day + " " + today.getDate() + " " +  month + " " + year
  return todayStr
}

function win(img) {
  pix= new Image();
  pix.src=("pix/" + img);
  sizecontrol(img);

}

function sizecontrol(img){
  if((pix.width!=0)&&(pix.height!=0)){
    viewpix(img);
  }
  else{
    function2="sizecontrol('"+img+"')";
    interval=setTimeout(function2,20);
  }
}

function viewpix(img){
  wmargin=pix.width+60;
  hmargin=pix.height+75;
  features="scrollbars=yes,location=no,resizable=yes,status=no,width="+wmargin+",height="+hmargin;
  myFloater = window.open('','myWindow',features);
  myFloater.close();
  myFloater = window.open('','myWindow',features);
  myFloater.location.href = "template.php?" + img;
  myFloater.focus();
}

function openWindow(url, name) {
  popupWin = window.open(url, name, 'status=yes,dependent=yes,resizable=yes,scrollbars=yes,width=450,height=250')
}

 //-->
