
function addLoadEvent(func) {
  var oldonload = window.onload;
  if (typeof window.onload != 'function') {
    window.onload = func;
  } else {
    window.onload = function() {
      oldonload();
      func();
    }
  }
}


function gpwaLogoLoad (){
    var hd = document.getElementsByTagName('head').item(0);
	var js = document.createElement('script');
	js.setAttribute('language', 'javascript');
	js.setAttribute('src', 'https://certify.gpwa.org/script/thevipcardclub.com/');
	hd.appendChild(js);
	return false;
	}
addLoadEvent(gpwaLogoLoad);