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;
	}
}

