<!--
var newwindow = '';

function popitup(url)
{
	if (!newwindow.closed && newwindow.location)
	{
		newwindow.location.href = url;
	}
	else
	{
		newwindow=window.open(url,'zoompic','toolbar=0,scrollbars=0,location=0,status=0,menubar=0,resizable=1,width=320,height=250,left = 50,top = 50');
		if (!newwindow.opener) newwindow.opener = self;
	}
	if (window.focus) {newwindow.focus()}
}


function popitupp(url)
{
	if (!newwindow.closed && newwindow.location)
	{
		newwindow.location.href = url;
	}
	else
	{
		newwindow=window.open(url,'zoompic','toolbar=0,scrollbars=0,location=0,status=0,menubar=0,resizable=1,width=350,height=420,left = 50,top = 50');
		if (!newwindow.opener) newwindow.opener = self;
	}
	if (window.focus) {newwindow.focus()}
}
//-->

