// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults


AudioPlayer.setup("/flash/player.swf", { 
	width: 290, transparentpagebg: "yes",
	leftbg: "357DCE",
	lefticon: "F2F2F2",
	rightbg: "F06A51",
	rightbghover: "AF2910",
	righticon: "F2F2F2",
	righticonhover: "FFFFFF",
	text: "357DCE",
	slider: "357DCE",
	track: "FFFFFF",
	border: "FFFFFF"
}); 


function addField(name, comboId) {
  var fieldName = prompt("Type in the new " + name + ' value');
  
  if (fieldName) {
  	// add it to the combo box
			var mySel = document.getElementById(comboId);
			var newOpt = mySel.appendChild(document.createElement('option'));
			newOpt.text = fieldName;
			newOpt.value = fieldName;
			mySel.selectedIndex = mySel.options.length - 1;
		}
}