function setCircle(tdID, on){
	 obj = document.getElementById(tdID);
     if(on) obj.className = 'menuhover';
     else obj.className = '';
}
function ShowPhoto(furl,fw,fh) 
  {
    fh1=screen.height-140;
	wd = screen.width;
	wd=wd/2-fw/2;
    if(fh>fh1)
    {
        fh=fh1;
    }
    Showin=window.open(furl,"photo","toolbar=no,menubar=no,scrollbars=yes,resizable=no,height="+fh+",width="+fw+",top=150,left="+wd+"");
    Showin.document.open();
    Showin.document.writeln('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">\n<html>\n<head>\n<meta http-equiv=content-type content="text/html; charset=UTF-8">\n<title>Photos</title>\n<meta http-equiv=expires content=0>\n<meta http-equiv=pragma content=no-cache>\n<meta http-equiv=cache-control content=no-cache>\n<style>body{padding: 0; margin: 0;}\n img{border:0;}</style>');
    Showin.document.writeln('<div style="padding-top: 20px; text-align: center;"><a href="#" onClick="window.close();"><img src="'+furl+'" alt="Click to close window" title="Click to close window" /></a></div>\n</body>\n</html>');
    Showin.document.close();
    Showin.focus();
    return false;
  }
