function writit()
{
	var text = '<iframe src="/files/288194/Ocean.html" width="550" height="217" frameborder="0" marginwidth="0" marginheight="0" hspace="0" vspace="0" scrolling="no" id="flashframe"></iframe>';
	var id = 'searchDivs';

	if (document.layers)
	{
		x = document.layers[id];
		text2 = '<p>' + text + '</p>';
		x.document.open();
		x.document.write(text2);
		x.document.close();
	}
	else if (document.getElementById)
	{
		var x = document.getElementById(id);
		x.innerhtml = text;
	}
	else if (document.all)
	{
		x = document.all[id];
		x.innerHTML = text;
	}
}