
// ------------------------------------------------------------------------------------------------------------
//	fotosite-node-manipulation
//
// 	<http://www.muratnkonar.com/otherstuff/fotosite>
//
//	(C) 2006 murat n konar
//
// ------------------------------------------------------------------------------------------------------------



// ------------------------------------------------------------------------------------------------------------
//	nodeWithId
// ------------------------------------------------------------------------------------------------------------
function nodeWithId(id)
{
   return document.layers ? document.layers[id] : (document.getElementById ?  document.getElementById(id) : document.all[id]);
}

// ------------------------------------------------------------------------------------------------------------
//	bodyNode
// ------------------------------------------------------------------------------------------------------------
function bodyNode()
{
	return document.getElementsByTagName("body").item(0)
}

// ------------------------------------------------------------------------------------------------------------
//	replaceNode
// ------------------------------------------------------------------------------------------------------------
function replaceNode(node, replacement)
{
	var parent = node.parentNode
	if (parent != null)
	{
		parent.replaceChild(replacement, node)
	}
}