
var WinOpener = 
{
	idx : 0,
	namePre : "winOpener",

	init : function(cls, wName, w, h, menu, stat, scroll, resize, tools, location, directories, center, t, l)
	{
		var els = document.links;
		var c = 0; var tp, lft;
		if (center) 
		{
			t = (screen.height - h)/2; l = (screen.width - w)/2;
		}
		var feat = "height=" + h + ",width=" + w + ",menubar=" + menu + ",status=" + stat + ",scrollbars=" + scroll + ",resizable=" + resize + ",toolbar=" + tools + ",location=" + location + ",directories=" + directories + ",top=" + t + ",left=" + l;
		while (c < els.length)
		{
			if (els[c].className == cls) 
				els[c].onclick = function()
				{
					window.open(this.href, WinOpener.namePre + "wName", feat)
					return false;
				}
			c++;
		}
		WinOpener.idx++;
	}
}

window.onload = function()
{
	//function(cls, wName, w, h, menu, stat, scroll, resize, tools, location, directories, center, t, l)
	WinOpener.init("readmore", "read", 484, 518, 1, 0, 1, 1, 0, 0, 0, 1, "", "");
}

