function add_shadow(name, path, method){
if(path==null) path="";
if(method==null) method="scale";
if(document.all && !window.opera) {
    if (/MSIE (5\.5)|[6789]/.test(navigator.userAgent) && navigator.platform == "Win32") {
        document.write("<style>."+name+" {filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/i/"+path+name+".png', sizingMethod='"+method+"');}</style>");
    }
    } else if (document.getElementById) {
    document.write("<style>."+name+" {background:url('/i/"+path+name+".png') no-repeat ;}</style>");
}
}

