<!--
//------------------------------------------------
// (c) 2007 Alles Over Marktonderzoek
// Global functions
//------------------------------------------------

var KEY_LEFT = 37;
var KEY_RIGHT = 39;
var KEY_UP = 38;
var KEY_DOWN = 40;
var KEY_ENTER = 13;
var KEY_TAB = 9;
var KEY_ESC = 27;
  
function popup(url, name, h, w, t) {
  var x;

  if (t == -1) {
    t = Math.ceil( (window.screen.height - h) / 2 );
  }    
  x = Math.ceil( (window.screen.width - w) / 2 );

  var popup = window.open(url,name,"toolbar=no,directories=no,menubar=no,status=yes,scrollable=yes,resizable=1,height=" + h + ",width=" + w + ",left=" + x + ",top=" + t);
  if (popup != null)
		popup.focus();
}

function Go(url) {
	if (!e)
		var e = window.event;
	if (e)
		e.cancelBubble = true;
	if(url)
		location.href = url;
}
function sendMail(email, subject) {
    
    var fullAddress = "mailto:" + email;
    window.self.location = fullAddress;

}
function classChange(e, classname) {
	if (e != null)
		e.className = classname;
}

google_ad_client = "pub-9388876349362255";
google_alternate_color = "FFFFFF";
google_ad_width = 120;
google_ad_height = 240;
google_ad_format = "120x240_as";
google_ad_type = "text";
google_ad_channel ="";
google_color_border = "FFFFFF";
google_color_link = "64643C";
google_color_bg = "FFFFFF";
google_color_text = "777777";
google_color_url = "99A26B";
//-->