﻿function writeAdv( url, link, width, height, className, title, target)
{
    if(!url) return;
    width = width ? "width='" + width + "'": "";
    height = height ? "height='" + height + "'": "";
    link = link ? "href='" + link + "'": "";
    title = title ? "title='" + title + "'": "";
    target = target ? "target='" + target + "'": "";
    className = className ? "class='" + className + "'": "";
    if(url.match(/.swf$/ig))
    {
            document.write("<embed src='" + url + "' quality='best' wmode='transparent' " + width + " " + height + " style='border:0px solid #6ab6fb' align='middle'  allowScriptAccess='sameDomain' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' />");
          
//            document.write("\
//        <a " + className + "  " + link + " " + title + " " + target + ">\
//           <embed src='" + url + "' quality='best' wmode='transparent' " + width + " " + height + " align='middle'  allowScriptAccess='sameDomain' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' />\
//        </a>\
//        ");
    }
    else
    {
        document.write("\
        <a " + className + "  " + link + " " + title + " " + target + ">\
            <img src='" + url + "' " + width + " " + height +" style='border:0px solid #6ab6fb'/>\
        </a>\
        ");
    }
}

