Pop = function () {
var WindowObjectReference;
	if (!document.getElementsByTagName) return false;
	var lin = document.getElementsByTagName("a")
	for (var i = 0; i < lin.length; i++) {
		if (lin[i].className == "pop") {
			lin[i].onclick = function() {
			   WindowObjectReference = window.open(this.href,'','width=800,height=600,menubar=yes,location=yes,resizable=yes,scrollbars=yes,status=yes,toolbar=yes,directories=yes');
			   return false;
			}
		}	
	}
}