﻿function popupsmallcode() 
{
var x = document.getElementsByTagName('A');
for (var i=0;i< x.length;i++)
	{
	if (x[i].className == 'popupsmall')
		{
		x[i].onclick = function () {
			return popupsmall(this.href)
			}
		x[i].title += ' (Popup)';
		}
	}
}


function popupsmall(url)
{
newwindow=window.open(url,'name','height=260, width=450, resizable=no, scrollbars=no, status=no, menubar=no, toolbar=no, location=no');
if (window.focus) {newwindow.focus()}
return false;
}

