﻿		window.onload = function() {
			if (!document.getElementsByTagName) {
				return false; 
		}
					var popuplinks = document.getElementsByTagName("a");
				for (var i=0; i < popuplinks.length; i++) {	
					if (popuplinks[i].className == "popup") {	
						popuplinks[i].onclick = function() {	
						openPopUp(this.getAttribute("href"));	
						return false; 	
						} 	
					}
				} 
			}
		
		function openPopUp() {
			window.open("terms.html",'popup','width=460,height=500,scrollbars=yes,resizable=yes')
		}
		
