window.onload = function() {
	if (!document.getElementsByTagName) {
		return false;
		}
	var links = document.getElementsByTagName("a");
	for (var i=0; i < links.length; i++) {
		if ((links[i].getAttribute("class") == "pop")) {
			links[i].onclick = function() {
				window.open(this.getAttribute("href"),"","width=600,height=468");
				return false;
				}
			}
		if ((links[i].getAttribute("class") == "popper")) {
			links[i].onclick = function() {
				window.open(this.getAttribute("href"),"","");
				return false;
				}
			}
		}
	}

