// portfolio

window.onload=autoPOP;

function autoPOP()
{
	var x = document.getElementsByTagName('a');
	for (var i=0;i<x.length;i++)
	{
		if (x[i].getAttribute('className') == 'popup_pf' || x[i].getAttribute('class') == 'popup_pf')
		{
			x[i].onclick = function () {
			return winOpen(this.href)
			}
			x[i].title += '(popup_pf)';
		}
	}
};

function winOpen(url) {
	var newwin = window.open(
		url,
		'popup_pf',
		'width=565,height=560,scrollbars=1,resizable=1'
	);
	newwin.focus();
	return false;
};

