window.onload = popWinLinks;

function popWinLinks(){
	for (var i=0; i<document.links.length; i++){
		if(document.links[i].className == "mapWin") {
			document.links[i].onclick = popWindow;
		}
	}
}

function popWindow() {
	var themapWindow = window.open(this.href,"themapWin","scrollbars=0,width=600,height=217,resizable=0,left=200,top=200","");
	themapWindow.focus();
	return false;
}