function setIframe()
{
	var el = document.createElement("iframe");
	el.setAttribute('id', 'ifrm');
	var con = document.getElementById('registration_frame');
	con.appendChild(el);
	el.setAttribute('src', 'http://jambo.lionhead.nl/');
	el.setAttribute('height', '600');
	el.setAttribute('width', '360');
	el.setAttribute('frameborder', '0');
	el.setAttribute('scrolling', 'no');
}