function popup(newURL, windowname) {
	if (! window.focus)return true;
	var href;
	if (typeof(newURL) == 'string')
		href=newURL;
	else
		href=newURL.href;
	window.open(href, windowname, 'width=650,height=410,scrollbars=no, resizable=no, menubar=no');
	return false;
}

function go(title){
    switch(title){
        case 'agent':
            window.location.href='/find/';
            break;
        case 'reputation':
            newURL = 'http://www.golyon.net/slogan/reputation.html';
            windowname = title;
            popup(newURL,windowname);
            break;
        case 'knowledge':
            newURL = 'http://www.golyon.net/slogan/knowledge.html';
            windowname = title;
            popup(newURL,windowname);
            break;
        case 'honesty':
            newURL = 'http://www.golyon.net/slogan/honesty.html';
            windowname = title;
            popup(newURL,windowname);
            break;
        case 'communication':
            newURL = 'http://www.golyon.net/slogan/communication.html';
            windowname = title;
            popup(newURL,windowname);
            break;
        case 'results':
            newURL = 'http://www.golyon.net/slogan/results.html';
            windowname = title;
            popup(newURL,windowname);
            break;
    }
}