function WriteLayer(text,id)
{
    if(document.getElementById)
    {
	x = document.getElementById(id);
	x.innerHTML = text;
	//	if(window.navigator.appName == 'Netscape')
	//  window.sizeToContent();	
    }
    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();
    }
}

