function doPopups() {
	if (!document.getElementsByTagName) {
	  
		return false;
	}
	
	var links = document.getElementsByTagName("a");
	
	for (var i=0; i < links.length; i++) {
		if (links[i].className.match("popup")) {
			links[i].onclick=function() {

				TDH.Window.popupWindow('src='+this.href+', width=790, height=500, toolbar=0, scrollbars=1, location=0, statusbar=0, menubar=0, resizable=0, modal=1');
//				window.open(this.href, "", "top=40,left=40,width=790,height=500,scrollbars=1");
				return false;
			}
		}
	}
}