function popUp( strURL, strTitle ) {
	var strOptions="scrollbars,resizable,height=400,width=700";
	strTitle = (strTitle)? strTitle : "Telecombiz.com"
	window.open(strURL, strTitle , strOptions);
}

var popLinkHol = document.getElementById("htmlbottom");
if (popLinkHol) {
	var aList = popLinkHol.getElementsByTagName("a");
	for (var i = 0, j = aList.length; i < j; i++){
		aList[i].onclick = function() { popUp(this.href, this.alt); return false; };
	}
}
