/**
JavaScript Popup code from
http://cannedlaughter.net/2006/05/11/the-correct-way-for-pop-up-windows/

<a href="popup.html" class="popup">Click Me</a>
*/



window.onload = function (e) {
	if (!document.getElementsByTagName) return false;
	var links = document.getElementsByTagName("a");
	for (var i=0; i<links.length; i++) {
		if (links[i].getAttribute("class") == "popup") {
			links[i].onclick = function() {
				window.open(this.getAttribute("href"), "This is a Pop-up window","width=640,height=480");
				return false;
			}
		}
	}
}