function popup(){
	window.open(this.href, '_blank', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=370,height=400');
	return false;
}

function setPopups(){ 
	for (i= document.links.length; i-->0;)
	    if (document.links[i].className == 'popup')
	      document.links[i].onclick= popup;
}

