//Full Featured Multi Media Player for both Flv and MP3 files
// DO NOT USE ANY of the following " ' & (ampersand, appostrophe, quotes)
//in any values passed to this function.
//Values are folder and name of file to play, optional title, 
//optional description, optional background image url, true or false.
//See links above for examples of how to use this function
function StreamMedia(s2File, s2Title, s2Desc, s2Image, b2AutoPlay) {
   win=window.open("http://media.servicenetwork.com/popMediaPlayer.asp?File=" + s2File + "&Title=" + s2Title + "&Desc=" + s2Desc + "&Image=" + s2Image + "&AutoPlay=" + b2AutoPlay, "MediaWindow", "toolbar=no,scrollbars=no,resizable=no,width=526,Height=514");
   if (!win.opener)win.opener=self;
   if (win.focus)win.focus();
}
