function popup() {
	window.open(this.href, '', 'toolbar=0,scrollbars=1,location=0,left=200,top=200,statusbar=0,menubar=0,resizable=1,width=300,height=300');
	return false;
}






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