<!--
//------------------------------------------------
// (c) 2006 RightMarktonderzoek.nl
// http://www.rightmarktonderzoek.nl
// Standaard functies
//------------------------------------------------

function popup(url, h, b, t) {
  var x, popup;
  
  x = Math.ceil( (window.screen.width  - b) / 2 );
  h = h + 20;
  
  window.open(url,'Popup',"toolbar=no,directories=no,menubar=no,status=no,scrollbars=no,resizable=0,height=" + h + ",width=" + b + ",left=" + x + ",top=" + t);
}

function verstuurEmail(email, onderwerp) {
  if (onderwerp) {
    var volledigeAdres = "mailto:"+email+"@studiepanel.nl?subject="+onderwerp;
    window.self.location = volledigeAdres;
  }
  else {
    var volledigeAdres = "mailto:"+email+"@studiepanel.nl";
    window.self.location = volledigeAdres;
  }
}
  
function classChange(obj, classname) {
	if (obj != null)
		obj.className = classname;
}

function DisableButton(b) {
  b.disabled = true;
  b.value = 'Bezig met verzenden...';
}
//-->
