// JavaScript Document

window.name = 'window1';
var newwindow = '';

function popitup(url)
{
	if (!newwindow.closed && newwindow.location)
	{
		newwindow.location.href = url;
	}
	else
	{
		newwindow=window.open(url,'name','height=600,width=800,left=200,top=200,resizable=yes,scrollbars=yes,toolbar=yes,status=yes');
		if (!newwindow.opener)
		{
			newwindow.opener = self;
		}
	}
	
	if (window.focus)
	{
		newwindow.focus()
	}
}
