function callSound(id, songName, songFile) {
	// Windows or Macintosh
	if (navigator.appName.indexOf('Microsoft') != -1) {
		window[id].callSong(songName, songFile);
	} else {
		document[id].callSong(songName, songFile);
	}
}

