// Copyright Janet Systems 2008

function playIntro(AudioFile) {
	if (window.location.href=="http://www.mrpanda.co.uk/") {
	//if (window.location.href=="http://www.mrpanda.co.uk/Splash/tabid/194/language/en-GB/Default.aspx") {
		if (get_cookie("PlayIntro") != 'True') {
			writeSound(AudioFile);
		}
		set_cookie("PlayIntro", 'True')
	}
}

function set_cookie(Name, Value) {
	document.cookie = Name + "=" + Value;
}

function get_cookie(Name) {
  var search = Name + "=";
  var returnvalue = "";
  if (document.cookie.length > 0) {
    offset = document.cookie.indexOf(search);
    if (offset != -1) { 
      offset += search.length;
      end = document.cookie.indexOf(";", offset);
      if (end == -1) end = document.cookie.length;
			returnvalue=unescape(document.cookie.substring(offset, end));
      }
   }
  return returnvalue;
}

function writeSound(AudioFile) {
	if (navigator.appName == "Microsoft Internet Explorer") {
		document.write('<bgsound src="' + AudioFile + '" LOOP="false">');
	}
	else {
		document.write('<embed type="application/x-mplayer2" pluginspage="http://www.microsoft.com/Windows/MediaPlayer/" Name="MediaPlayer" src="' + AudioFile + '" AutoStart="true" ShowStatusBar="0" ShowControls="0" ShowDisplay="0" volume="1" HEIGHT="1" WIDTH="1" loop="false"><br>');
	}
}
