// JavaScript Document

function popup(url){
	nw=window.open(url,"glossary","scrollbars=yes,width=500,height=350");
	nw.focus();		
}

function scanLinks(){
	tmp="";
	for(x in document.links)
	{
		tmp=document.links[x].href+"\r\n";	
		if(tmp.substr(0,5) == "http:" && (tmp.indexOf("#")==-1))
			document.links[x].href+=document.location.search;
	}
	//alert(tmp);

}

document.onload = window.onload = scanLinks;
