<!--
var newwindow = '';

function pop3D(url)
{
	if (!newwindow.closed && newwindow.location)
	{
		newwindow.location.href = url;
	}
	else
	{
		newwindow=window.open(url,'name','height=480,width=620,status=0,menubar=0,location=0,toolbar=0');
		newwindow.moveTo(screen.availWidth/4,screen.availHeight/4)
		
		if (!newwindow.opener) newwindow.opener = self;
	}
	
	if (window.focus)
	{
		newwindow.focus()
	}
	
	return false;
}
-->