/**
 * @author Nghiem Anh Tuan
 */
function getSectionID()
{
	var thelink = top.location.href;
	var splashpos = thelink.indexOf("#");
	var oid="";
	if (!(splashpos<0))
	{
		oid = thelink.substring(splashpos+1,thelink.length);
	}
	return oid;
}
qId = getSectionID();
if (qId!="") sm.expand(qId);
