/*--------------------------------------------------------
Code to spawn a popup window by adding class="pop-win" to your link
-----------------------------------------------------------*/

function popupWin() 
{
if (document.getElementsByTagName)
{
	var x = document.getElementsByTagName('a');
	for (var i=0;i< x.length;i++)
		{
		if (x[i].className == 'pop-win')
			{
			x[i].onclick = function () {
				return popupWinCreate(this.href)
				}
			x[i].title += ' (Popup1)';
			}
		}
	}
}

function popupWinCreate(url)
{
	newwindow=window.open(url,'name','height=450,width=450, resizable=yes, scrollbars=yes, status=yes');
	if (window.focus)
	{
		newwindow.focus()
	}
return false;
}

addEvent(window, 'load', popupWin);