function RandomBG()
{
	var randomnumber=Math.floor(Math.random()*7);
	document.body.style.backgroundImage = "url(gfx/bg_"+randomnumber+".jpg)";
}

function SendSearch(myfield,e)
{
	var keycode;
	if (window.event)
	{
		keycode = window.event.keyCode;
	}
	else if (e) 
	{
		keycode = e.which;
	}
	else 
	{
		return true;
	}

	if (keycode == 13)
	   {
			if(myfield.id == "google")
				document.location.href="http://www.google.de/search?q="+myfield.value;
			if(myfield.id == "buffed")
				document.location.href="http://www.buffed.de/?f="+myfield.value;
			if(myfield.id == "torrentfind")
				document.location.href="http://m4ko.de/torrent.php?searchstring="+myfield.value;
			if(myfield.id == "iconfinder")
				document.location.href="http://www.iconfinder.net/index.php?q="+myfield.value;
			if(myfield.id == "crackspider")
				document.location.href="http://crackspider.net/crack.shtml?q="+myfield.value;
			if(myfield.id == "ebay")
				document.location.href="http://search.ebay.de/search/search.dll?satitle="+myfield.value;
			if(myfield.id == "wikipedia")
				document.location.href="http://de.wikipedia.org/wiki/Spezial:Search?search="+myfield.value;	
			if(myfield.id == "fonts")
				document.location.href="http://www.abstractfonts.com/search/"+myfield.value;		
	   }
	else
	   return true;
}

function ClearBox(boxid)
{
	var element = document.getElementById(boxid);
	element.value = '';
}

function LayerToggle( whichLayer )
{
	var elem,vis,i;
	var kkklll = 15;
	
	for(i=0; i<kkklll; i++)
	{
		elem = document.getElementById( 'links_'+i );
		vis = elem.style;
		vis.display = 'none';
		elem = document.getElementById( 'cat_'+i );
		vis = elem.style;
		vis.color = '#FFFFFF';
		vis.fontWeight = 'normal';
	}
	
	elem = document.getElementById( 'links_'+whichLayer );
	vis = elem.style;
	vis.display = 'block';
	
	elem = document.getElementById( 'cat_'+whichLayer );
	vis = elem.style;
	vis.color = '#5CCBFF';
	vis.fontWeight = 'bold';
}

function showpanel() {
	var attribWithoutAll="location=no,menubar=no,toolbar=no,status=no,resizable=no,scrollbars=no,width=550,height=400";
	window.open("../admin.php","popup",attribWithoutAll);
}