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 += '(Popup)';
		}
	}
};

function winOpen(url) {
	window.open(
		url,
		'popup',
		'width=680,height=700,scrollbars=0,resizable=1'
	);

	return false;
};

function subWin1(){window.open("http://mi-c.co.jp/news/n1207.html","window1","width=600,height=500,scrollbars=1,toolbar=yes");}