function correctPNG() {
 
   for(var i=0; i<document.images.length; i++){
          var img = document.images[i]
          var imgName = img.src.toUpperCase()
          if (imgName.substring(imgName.length-3, imgName.length) == "PNG"){

                         var imgID = (img.id) ? "id='" + img.id + "' " : "";
                         var imgClass = (img.className) ? "class='" + img.className + "' " : "";
                         var imgTitle = (img.title) ? "title='" + img.title + "' " : "title='" + img.alt + "' ";
                         var imgStyle = "display:inline;" + img.style.cssText ;
                         if (img.align == "left") imgStyle = "float:left;" + imgStyle;
                         if (img.align == "right") imgStyle = "float:right;" + imgStyle;
                         if (img.parentElement.href) imgStyle = "cursor:hand;" + imgStyle        ;        
                         var strNewHTML = "<span " + imgID + imgClass + imgTitle 
                         + " style=\"font-size:0px;width:" + img.width + "px; height:" + img.height + "px;" + imgStyle + ";"
             + "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader"
                         + "(src=\'" + img.src + "\', sizingMethod='image');\"></span>" 
                         img.outerHTML = strNewHTML;
                         i = i-1;
                }
   }
}

detect=navigator.userAgent.toLowerCase();

function getNews(id)
{	location.href='index.php?id='+id;
}

function getStandings(id,typ)
{	location.href='standings.php?id='+id+'&typ='+typ;
}

function getEvent(id)
{	//location.href='events.php?id='+id;
}

function openAudio()
{	vidwin=window.open('http://www.redbullaudioplayer.com/players/view/2a71a85c28f8048695d59670883536f59b12ec74','audioplayer','width=600,height=565,scrollbars=no,resizable=0,location=no,menubar=no,toolbar=no,status=no');
}