function popup(url, windowname)
{
	if(!window.focus) return true;
	
	var href;
	if(typeof(url) == 'string')
		href = url;
	else
		href = url.href;
	
	window.open(href, windowname, 'width=450,height=300');
	return false;
}
