



// Set path to the iframe file
var filePath = 'http://www.'+stl_domain+'/live/w/sports?key='+stl_key+'&type='+stl_type+'&width='+stl_width+'&height='+stl_height;
// Setup the iframe target

var mydiv = parent.document.getElementById(stl_id);

var iframe='<iframe id="frame'+stl_id+'" name="widget'+stl_id+'" src="'+filePath+'" width="'+stl_width+'" height="'+stl_height+'" style="border: 1px solid #999" marginheight="0" marginwidth="0" frameborder="no" scrolling="no"></iframe>';
	// Write the iframe to the page
	//document.write(iframe);
	
	if (mydiv) {
		mydiv.innerHTML = iframe;
	
	var myIframe = parent.document.getElementById("frame"+stl_id);
	// Setup the width and height
	
	myIframe.height = stl_height;
	myIframe.width = stl_width;
	
	myIframe.src = filePath;
	// set the style of the iframe
	myIframe.style.border = "1px solid #999";
	myIframe.style.padding = "0px";
	}
