function loadPopUpLink() {
    var a = document.getElementsByTagName("a");
    for(var i=0;i<a.length;i++) {
        if(a[i].className=="popup") {
            a[i].onclick= function() {
				var h = this.getAttribute("href");
				window.open(h,null,"height="+queryString(h,'height')+",width="+queryString(h,'width')+",scrollbars=yes,status=yes,toolbar=no,menubar=no,location=no"); return false;
			}
        }
    }
}