<!--
function write_link (URL_v, onmouseover_v, onmouseout_v)
{
	setBrowser();
	if (is_NS4)
	{
		document.write('<a href="'+ URL_v + '">');
		//document.write('<a href="' + URL_v + '" ' + onmouseover_v + onmouseout_v + '>');	
	}
	else
	{
		document.write('<a href="' + URL_v + '" ' + onmouseover_v + onmouseout_v + '>');
	}
}

function write_div(div_id, width, height, left, top, z, string_v)
{
	setBrowser();
	if (is_NS4)
	{
		document.write("");
	}
	else
	{
		document.write('<DIV ID="' + div_id + '" STYLE="position:absolute; width:' + width + 'px;');
		document.write(' height:'+height+'px; z-index:' + z + '; left: '+ left + 'px; top: ' + top + 'px; background-color:');
		document.write(' #000000; layer-background-color: #000000; border: 1px none #000000;');
		document.write(' visibility: hidden"><FONT FACE="Arial, Helvetica, sans-serif"');
		document.write(' SIZE="1">' + string_v);
        document.write('</FONT></DIV>');
	}
}
function write_anchor_end()
{
	document.write("</a>");
}

//-->
