// GENERAL JavaScript
/*
changes:
2006.06.09 site name in ALT attribute
*/

function thCode(dirUrl, fileName) {
    var fileUrl = dirUrl+fileName;
    var thUrl = dirUrl + "_th_/" + fileName;
    fileUrl = normalizeURL2(fileUrl);
    thUrl = normalizeURL2(thUrl);
    var htmlCode = '<a href="'+fileUrl+'"><img border="0" class="thumbnail" src="'+thUrl+'" alt="'+fileName+' [www.dogsnn.ru]" /></a>';
    return htmlCode;
}
