
window.onload=autoPOP;
function autoPOP()
{
	var x = document.getElementsByTagName('a');
	for (var i=0;i<x.length;i++)
	{
		if (x[i].getAttribute('className') == 'popup' || x[i].getAttribute('class') == 'popup')
			{
				x[i].onclick = function () {
				return winOpen(this.href)
			}
			x[i].title += '別窓で開きます';
		}
	}
};

function winOpen(url) {
	win1 = window.open(
	url,'popup','width=576,height=650,scrollbars=0,resizable=0'
	);
	win1.focus();
	return false;
};