
function thumbnail_over(oCaller) {
	oCaller.style.cursor = "hand";
    oCaller.style.textDecoration = "underline";
    
    return false;
}

function thumbnail_out(oCaller) {
    oCaller.style.textDecoration = "none";
    
    return false;
}

function thumbnail_click(sPicture, iWidth, iHeight) {
    iWidth += 10;
    iHeight += 10;
    oTemplate = window.open("text/html", "newwindow",
                            "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width=" + iWidth + ",height=" + iHeight + "");   

    sMarkup = "<html><head><title>Screenshot</title></head><body topmargin=\'5\' leftmargin=\'5\'><a href=\'#\' onclick=\'self.close();\'><img src=\'" + sPicture + "\' border=\'0\' alt=\'click to close this window\' /></a></body></html>";
    oTemplate.document.write(sMarkup);
    oTemplate.document.close();
    
    return false;
}