function writeIframe(elementID, options)
{
	var el = document.getElementById(elementID);
	
	var attrs = '';
	for(var optionName in options)
	{
		attrs += optionName + '="'+options[optionName]+'"';
	}
	
	var iframe = '<iframe '+attrs+'></iframe>';
	
	el.innerHTML = iframe;
}
