// JavaScript Document

function FirstCall()
{
	if (NS4) 
	{
		document.write('<LAYER  NAME="floatlayer" LEFT="'+floatX+'" TOP="'+floatY+'">');
	}
	if (NS4) 
	{
		document.write('<LAYER  NAME="floatlayer" LEFT="0" TOP="-1000">');
	}
	if ((IE4) || (NS6)) 
	{
		document.write('<div id="floatlayer" style="position:absolute; left:'+floatX+'; top:'+floatY+';">');
	}
}
function nextCall()
{
	if (NS4)
	{
	document.write('</LAYER>');
	}
	if ((IE4) || (NS6))
	{
	document.write('</LAYER>');
	}
}
