    function LoadMPlayer(url) {  
        var i=i+2;
    
     url = 'mplayer.aspx?url=' + url;
     var mplayer;
     mplayer =  window.open(url,'mywin','left=200,top=200,width=300,height=130,toolbar=0,location=0,directories=0,resizable=0,scrollbars=0,menubar=0,status=0');
     mplayer.focus();
     
    }

    function checkForiTunes(path)
    {

        var conf = confirm('This link will not work unless you have iTunes installed.  Click OK and iTunes will load this Podcast Feed into your saved Podcasts.  If you do not have iTunes installed click cancel to download iTunes.')

        if (conf == true)
        {
            if (path.substring(0,7) == "http://") path = path.substring(7);
            var url = 'itpc://'+path;
            window.location.href = url;     
        }
        else
        {
            window.open("http://www.apple.com/itunes/download");
        }
        
    }