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) {
var w = window.open(url,'popup','width=620,height=650,scrollbars=1,resizable=1');
w.focus();
return false;
};

function winOpen2(url) {
var w = window.open(url,'popup','width=912,height=700,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0');
w.focus();
return false;
};