// JavaScript Document
window.onload=autoPOP;
function autoPOP()
{
	var x = document.getElementsByTagName('a');
	for (var i=0;i<x.length;i++)
	{
		if (x[i].getAttribute('className') == 'blank' || x[i].getAttribute('class') == 'blank')
		{
			x[i].onclick = function () {
				window.open(this.href, "_blank");
				return false;
			}
			x[i].title += '';
		}
	}
};