var w;

function thumbnail( url )
{
if( typeof(w) == "object" ) w.close();

w = window.open("", "", "scrollbars=0,toolbars=0,menubar=0");

with( w.window.document )
{
open();
write("<html><head><title>" + url + "</title></head><body onload='window.resizeTo(706, 497);' style='border: 0px; padding: 0px; margin: 0px;'><a href='#' onclick='self.close();'><img src = '" + url + "' style='border: 0px;' alt='Close' /></a></body></html>");
close();
}

w.window.moveTo((screen.availWidth/2)-(w.document.images[0].width/2),(screen.availHeight/2)-(w.document.images[0].height/2));

return;
}