<!--

function popup(mylink, windowname, options)
{
	if (! window.focus) return true;
	
	var href;
	
	if (typeof(mylink) == 'string')
		href=mylink;
	else
		href=mylink.href;
		
	window.open(href, windowname, options);
	
	return false;
}

var howLong = 1;

t = null;
function closeMe() {
	t = setTimeout("self.close()", howLong);
}

//-->
