// JS code by JustAdequate Media - justadequate.net
// Sure, it's simple code - so don't steal it, just go write it yourself

if (top.location != location) top.location.href = location.href;

mydate = new Date();
yyear = mydate.getYear();
if(yyear<1000) yyear+=1900;

function ddLink() 
{
  var number = document.ddForm.ddBookCategory.selectedIndex;
  location.href = document.ddForm.ddBookCategory.options[number].value;
}

function pixPopper(image_loc)
{
  HTML = "<html><style>body{margin:0px;}</style><body onLoad='top.focus()'><img src='"+ image_loc +"' border=0 name=loadedPic onLoad='window.resizeTo(document.loadedPic.width+10,document.loadedPic.height+20)'></body></html>";
  newPicWin = window.open('','_new','toolbar=no,scrollbars=no');
  newPicWin.document.open();
  newPicWin.document.write(HTML);
}




