function writeAll(name0, width, height, id0, name1, name1a, id1, name2, name2a, id2)
{
writeIframe(name0, width, height, id0);
writeIframe2(name1, name1a, id1);
writeIframe2(name2, name2a, id2);

}
function writeIframe(name, width, height, id)
{
text = "<iframe src='" + name + "' width='" + width + "'  height='" + height + "'  id= '" + name + "' frameborder=no border=0 scrolling=no></iframe>";
	if (document.getElementById)
	{
		x = document.getElementById(id);
		x.innerHTML = '';
		x.innerHTML = text;
	}
	else if (document.all)
	{
		x = document.all[id];
		x.innerHTML = text;
	}
	else if (document.layers)
	{
		x = document.layers[id];
		text2 = '<P CLASS="testclass">' + text + '</P>';
		x.document.open();
		x.document.write(text2);
		x.document.close();
	}
}

function writeIframe2(name1, name2, id)
{
text = "<P align=center><BR><a HREF=\"javascript:openWin(\'" + name2 + "\');\"><IMG SRC=\'" + name1 + "\' width=\'90%\' border=0></A></P>";

	if (document.getElementById)
	{
		x = document.getElementById(id);
		x.innerHTML = '';
		x.innerHTML = text;
	}
	else if (document.all)
	{
		x = document.all[id];
		x.innerHTML = text;
	}
	else if (document.layers)
	{
		x = document.layers[id];
		text2 = '<P CLASS="testclass">' + text + '</P>';
		x.document.open();
		x.document.write(text2);
		x.document.close();
	}
}