<!--

var newwindow = '';

function popitup(url)
{
  	if (!newwindow.closed && newwindow.location)
	{
			newwindow.location.href =url;
	}
	else

	{	newwindow=window.open(url,'name','height=480,width=450,left=0,top=0');
		if (!newwindow.opener) newwindow.opener = self; 
	}
	if (window.focus) {newwindow.focus()}
	return false;
}
function popitupOne(url)
{
  	if (!newwindow.closed && newwindow.location)
	{
			newwindow.location.href =url;
	}
	else

	{	newwindow=window.open(url,'name','scrollbars=1, height=480,width=450,left=0,top=0');
		if (!newwindow.opener) newwindow.opener = self; 
	}
	if (window.focus) {newwindow.focus()}
	return false;
}

//-->