window.onload = function() {
	var tempNode = document.getElementById('iframe');
	if (!tempNode) return false;

	var url = tempNode.innerHTML;
	var a = url.split(" ");

	if (url.substr(0,23)!='http://www.dinodini.com') return false;
        //replace www.yourwebsite.com with the correct domain name

	var contentNode = tempNode.parentNode;
	contentNode.removeChild(tempNode);

	var iframe = document.createElement('iframe');
	iframe.setAttribute('width',a[1]);
	iframe.setAttribute('height',a[2]);
        iframe.setAttribute('frameBorder','0');
	iframe.style.border = 'none';
	iframe.setAttribute('src',a[0]);

	contentNode.appendChild(iframe);
	return false;
}
