function dploginsearch(clan)
{
	var value = document.getElementById('toolbar_id').value;
	var type = clan ? 'clan' : 'member';
	if(parseInt(value) == value)
		window.location='http://dplogin.com/index.php?action=view'+type+'&'+(clan?type:'player')+'id='+value;
	else
		window.location='http://dplogin.com/index.php?action=display'+type+'s&search='+value;
}
function banteroussearch(demo)
{
	var value = document.getElementById('toolbar_id').value;
	var type = demo ? "demo" : "map";
	if(demo && (parseInt(value) == value))
		window.location='http://bantero.us/demo/'+value;
	else
		window.location='http://bantero.us/'+type+'s/index.php?page=browse&searchstring='+value;
}
$(document).ready(function() {
	$('.toolbar_search').css({visibility:'visible'/*,opacity:0*/});
	//$('#toolbar_search').animate({opacity:1},1000);
});
