function drawPng(url, width, height, id)
{
    document.write('<div id="' + id + '" style="width: ' + width + 'px; height: ' + height + 'px; filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\'' + url + '\', sizingMethod=\'scale\');"></div>');
    if (!document.getElementById(id).style.filter)
    {
        document.getElementById(id).innerHTML = '<img src="' + url + '" width="' + width + '" height="' + height + '">';
    }
}

function drawPngLnk(url, width, height, id, url_lnk)
{
    document.write('<div id="' + id + '" style="width: ' + width + 'px; height: ' + height + 'px; filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\'' + url + '\', sizingMethod=\'scale\'); text-indent: -9999px; cursor:pointer;"><a href="">Realnet</a></div>');
    if (!document.getElementById(id).style.filter)
    {
        document.getElementById(id).innerHTML = '<a href="' + url_lnk + '"><img src="' + url + '" width="' + width + '" height="' + height + '"></a>';
    }
}