function playSound(song) {
	if(isNS){
		document.soundFile.play(true,song);
	}
	else{
		soundID.src = song;
	}
}

function stopSound() {
	if (isNS){
		document.soundFile.stop();
	}
	else{
		soundID.src = null;
	}
}

function getSound() {

	if (isNS){
		return document.soundFile;
	}
	else{
		return soundID.src;
	}
}

