// JavaScript Document
window.onload=autoPOP;

function autoPOP()
{
 var x = document.getElementsByTagName('area');
 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)
   }
  }
 }
 
 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)
   }
  }
 } 
};

function winOpen(url) {
	window.open(
		url,
		'popup',
		'width=780,height=720,scrollbars=1,resizable=1'
	);

	return false;
};

