//window.onload=autoPOP;

function autoPOP()
{
	var x = document.getElementsByTagName('area');
	for (var i=0;i<x.length;i++)
	{
		x[i].onclick = function () {
		return winOpen(this.href)
		}
		x[i].title += '(Popup)';
	}
};

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

	return false;
};