// JavaScript Document

function setPopup()
{
	var anchors =document.getElementById('bloglist').getElementsByTagName('a');
	for (var i=0;i< anchors.length; i++){
		anchors[i].onclick = function(){
		var url = this.getAttribute('href');
		var win = window.open(url, 'popup', 'scrollbars=yes,resizable=yes,width=800,height=800');
		win.focus();
		return false;
		};
	}
};