﻿function addmbCSS(cssFile) {
	var headmb = document.getElementsByTagName('head')[0];
		if (!headmb) {
			return;
		}
	var linkmb = document.createElement('link');
		linkmb.type = 'text/css';
		linkmb.rel = 'stylesheet';
		linkmb.href = cssFile;
		headmb.appendChild(linkmb);
        }
// load the mailboxer subscribe badge 'base' styles
window.onload = addmbCSS('http://widgets.mailboxer.co.za/styles.css')
// load the mailboxer subscribe badge 'client' styles (just change client-name.css)
window.onload = addmbCSS('http://widgets.mailboxer.co.za/css/ldi.css')

