function autoPOP()
{
	var x = document.getElementsByTagName('a');
	for (var i=0;i<x.length;i++)
	{
		if (x[i].getAttribute('className') == 'backnumber' || x[i].getAttribute('class') == 'backnumber')
		{
			x[i].onclick = function () {
			return winOpen(this.href, '_blank', 700, 800)
			}
		}
		if (x[i].getAttribute('className') == 'floor' || x[i].getAttribute('class') == 'floor')
		{
			x[i].onclick = function () {
			return winOpen(this.href, '_blank', 600, 447)
			}
		}
		if (x[i].getAttribute('className') == 'entry' || x[i].getAttribute('class') == 'entry')
		{
			x[i].onclick = function () {
			return winOpen(this.href, '_blank', 460, 355)
			}
		}
	}
};

function winOpen(url, name, width, height) {
	window.open(
		url,
		name,
		'width=' + width + ',height=' + height + ',scrollbars=1,resizable=1'
	);

	return false;
};

