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'
);

return false;
};


function openWin(wUrl , wName , Width , Height , Resize , Status , Scroll){
	wOption = "toolbar=no,location=no,directories=no,status=" + Status +",menubar=no,scrollbars=" + Scroll +",resizable=" + Resize +",width=" + Width + ",height=" + Height + ",left=";
	w = window.open(wUrl,wName,wOption);
	w.focus();
}

function openWin2(wUrl , wName , Width , Height , Resize , Status , Scroll){
	wOption = "toolbar=yes,location=yes,directories=yes,status=" + Status +",menubar=no,scrollbars=" + Scroll +",resizable=" + Resize +",width=" + Width + ",height=" + Height + ",left=";
	w = window.open(wUrl,wName,wOption);
	w.focus();
}