function createFrame() {
	// If the edit console is there - then don't do the following.
	if (!document.getElementById("editConsole"))
	{
		//alert("edit console does not exist");
		var myIframe = document.createElement("iframe");
		myIframe.frameBorder = "0";
		myIframe.src = "http://www.onesuffolk.co.uk/RoadsHTML";
		myIframe.className = "RoadsFrame";
		myIframe.scrolling = "no";
		myIframe.title = "Road Traffic Events";
		document.getElementById("RoadsSpan").appendChild(myIframe);
	}
}
createFrame();