<!--
function imageWindow2(title,picfile2,w,h) {
  var x=20, y=20, s='no';
  if(screen.width < w) { w=screen.width-60; s='yes'; h=h+18} else x=(screen.width/2)-w/2;  
  if((screen.height-135) < h) { h=screen.height-135; s='yes'; w=w+19} else y=(screen.height/2)-h/2; 
  var t='<head><title>'+title+'<\/title><\/head><body leftmargin=0 rightmargin=0 topmargin=0 bottommargin=0 bgcolor=silver onBlur="self.close()" onLoad="self.focus()"\>';
  t=t+'<img src="http:\/\/www.nba.com\/media\/spurs\/wp0405_rd3gm3c_1200.jpg" width="600" height="450"><\/body>';
  imgWin=window.open('','displayWindow','left='+x+', top='+y+', menubar=no, resizable=yes, scrollbars='+s+', status=no, width='+w+', height='+h);
  imgWin.document.write(t);
  imgWin.document.close();
}
// -->