// JavaScript Document
//http://www.inclover-inc.com/pocket/px/coding/eid179.html
//http://www.inclover-inc.com/pocket/px/sample-tag/popup/index.html
//http://ross.archiva.jp/other/archives/2006/07/onclickjs.html


window.onload=autoPOP;

function autoPOP()
{
	var x = document.getElementsByTagName('a');
	for (var i=0;i<x.length;i++)
	{
		if (x[i].getAttribute('className') == 'flow-popup' || x[i].getAttribute('class') == 'flow-popup')
		{
			x[i].onclick = function () {
			return winOpen(this.href)
			}
			//x[i].title += 'お買い物の流れを確認';
		}
	}
};

function winOpen(url) {
	window.open(
		url,
		'popup',
		'width=720,height=600,scrollbars=1,resizable=1'
	);

	return false;
};

