// JavaScript Document


function toggleAudio(obj) {
	if(obj.style.width=='17px') {
		obj.style.width='11px';
		document.getElementById('audio_mp3').Stop();
	}
	else { 
		obj.style.width='17px';
		document.getElementById('audio_mp3').Play();
	}
}


function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
