function getElement(id)
{
	var select;
	if ( document.all )
	{
		select = document.all(id);
		isIE=true;
	}
	else
		select = document.getElementById(id);
	return select;
}
function insertBrowsingHist()
{
     var bhist = getElement('BrowsingHistPanel');
     var ifrm= getElement('qtagOpennerIframeID');
     var ifrmh= ifrm.src;
     var ifrmt= ifrm.src; 
     if ( bhist!=null)
     {
        var itxt= bhist.innerHTML;
        if ( itxt.indexOf(ifrmh)==-1)
        {
            itxt+='<p><a href="'+ifrmh+'" target="qTagMyIframeOpenner">'+ifrmt+'</a></p>';
            bhist.innerHTML;
        }
     }
}

