// JavaScript Document
var win = null;
function newWindow(mypage,myname,height,width) {
  var settings = 'height=' + height + ',';
  settings += 'width=' + width + ',';
  settings += 'toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,copyhistory=yes,scrollbars=no';
  win = window.open(mypage,myname,settings);
  win.window.focus();
}

var win = null;
function playMusic(mypage,myname) {
  var settings = 'height=165,';
  settings += 'width=140,';
  settings += 'toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,copyhistory=yes,scrollbars=no';
  win = window.open(mypage,myname,settings);
  win.window.focus();
}
<!--
function validate_commbooth() {
var frm = document.commboothform;

if (frm.a_org_name.value.length<1) {
alert("All fields are required. Please fill in Organization Name");
return false; }
if (frm.b_org_address.value.length<1) {
alert("All fields are required. Please fill in Organization Address");
return false; }
if (frm.c_org_description.value.length<1) {
alert("All fields are required. Please fill in Organization Description");
return false; }
if (frm.d_contact_name.value.length<1) {
alert("All fields are required. Please fill in Contact Name");
return false; }
if (frm.e_contact_phone.value.length<1) {
alert("All fields are required. Please fill in Contact Phone");
return false; }
if (frm.f_contact_email.value.length<1) {
alert("All fields are required. Please fill in Contact Email");
return false; }

else { 
	
	//alert (frm.elements[2].value);
	//alert (frm.elements[7].value);
return true; 
}
}
function findSelected(grp) {
 selectedRadio = null;
 for (i=0; i<grp.length; i++) {
  if (grp[i].checked) {
   selectedRadio = i;
  }
 }
 return selectedRadio;
}
// -->
