﻿function popuplink() {
	if (!document.getElementsByTagName) return;
	var anchors = document.getElementsByTagName("a");
	for (var i=0; i<anchors.length; i++) {
		var anchor = anchors[i];
		if(anchor.getAttribute("href") && anchor.getAttribute("rel") == "popup"){
			winPop(anchor);
		}
	}
}
function winPop(element){
	var link = element.getAttribute('href');
	element.onclick = function(){
		var wo = window.open(link,"levelWin","width=425,height=675,status=no,resizable=no,toolbar=no,menubar=no,scrollbars=yes");
		return false;
	}
}

window.onload = popuplink;

