//popup
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) {
	window.open(
		url,
		'popup',
		'width=800,height=720,scrollbars=yes,resizable=1'
	).focus();
	return false;
};

//popup
 function openWindow(loc){
	var link=loc;
	var wndw="detail";
	var myWindow=window.open(link,wndw,'resizable=yes,scrollbars=yes,status=yes,location=no,menubar=no,toolbar=no,width=950,height=650');
	if(myWindow.focus!=null){myWindow.focus();}
 }