//general javascript functions useful for multiple pages

function stripNodes(oEle)
{
	if ( oEle.hasChildNodes() )
	{
		while ( oEle.childNodes.length >= 1 )
		{
			oEle.removeChild( oEle.firstChild );
		}
	}
}

