function openImgWin(imgName,imgHeight,imgWidth) {
  imgHeight=imgHeight+30;
  imgWidth=imgWidth+20;
  imgWin=window.open('',imgName,'height='+imgHeight+',width='+imgWidth+
	',toolbar=no,location=no,status=no,menubar=no');
  imgWin.document.open('text/html');
  imgWin.document.writeln('<HTML><HEAD><TITLE>'+imgName+'</TITLE></HEAD>');
  imgWin.document.writeln('<LINK REL="Stylesheet" TYPE="text/css" HREF="style.css">');
  imgWin.document.writeln('<IMG SRC="./dev/'+imgName+'.jpg" onClick="self.close();"');
  imgWin.document.writeln(' BORDER=0 ALT="Click on image to close.">');
  imgWin.document.writeln('</BODY></HTML>');  }

var xBush=new Date(2009,00,19,10,00,00);

function startTime(){
  var today=new Date();
  var until=xBush-today;
  var s=Math.floor(until/1000);
  var m=Math.floor(s/60);
      s=s-60*m;
  var h=Math.floor(m/60);
      m=m-60*h;
  var d=Math.floor(h/24);
      h=h-24*d;

  if (h<10) h="0"+h;
  if (m<10) t="0"+t;
  if (s<10) s="0"+s;

  document.getElementById('txtBush').innerHTML=
  d+" days " +h+":"+m+":"+s+
    " until George W. Bush is no longer President.";

  t=setTimeout('startTime();',500);
}

