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


function winOpen(url) {
var w = window.open(url,'popup','width=0,height=0,scrollbars=1,resizable=1');
w.moveTo(0,0);
w.resizeTo(screen.availWidth,screen.availHeight);
w.focus();
return false;
};

