
function OpenNewWinForSearchResult() 
{           
    var theform;
    if (window.navigator.appName.toLowerCase().indexOf("netscape") > -1) {
            theform = document.forms["mainForm"];
    }
    else {
            theform = document.mainForm;
    }               
    theform.target = '_blank';                          
}

//----------------------------------------
function OpenNewWinForGlossaryResult() 
{            
    var theform;
	if (window.navigator.appName.toLowerCase().indexOf("netscape") > -1) {
		theform = document.forms["mainForm"];
	}
	else {
		theform = document.mainForm;
	}
    for (var i = 0; i < document.all.length; i++)
	{			
		var _obj = document.all.item(i);
		
		if (_obj.name)
		{	
			if (_obj.name.indexOf("cbIsNewWin") > -1 && _obj.status)
			{
			    
		        theform.target = '_blank';
		        break; 
			}
			else
			    theform.target = '_self';
		}	
	}
}          

