var bbx='0';
var bby='0';
var selection='';
var menuStatus=0;
var markier_sperre;
menu_texte();
sperre('aus');
ie5=1;
document.onmousedown=rechtsklick;
if(document.layers) window.captureEvents(Event.MOUSEDOWN);
window.onmousedown=rechtsklick;
document.onmousemove=updateMaus;
document.onmouseup=check;

function sperre(wert){
	if(wert=='ein') markier_sperre ='1';
	if(wert=='aus'){
		markier_sperre ='0';
		markierter_text='testen';
    }
}

function check(){
	if(markier_sperre =='0'){
		selection=selektieren();
		if(selection!='' && selection.length>=3 && selection.length<=50){
			showmenu();
		}else{
			hidemenu();
		}
	}
}

function hidemenu(){
	if(menuStatus==1 && event.button==1){
		setTimeout("document.getElementById('menu').style.top=-250",250);
		menuStatus=0;
	}
}

function hidemenu_easy(){
	if(menuStatus==1){
		setTimeout("document.getElementById('menu').style.top=-250",250);
		menuStatus=0;
	}
}

function showmenu(e){
	menuWidth=330, menuHeight=50;
	xPos=bbx;
	yPos=bby;
	document.getElementById("menu").style.left=xPos;
	document.getElementById("menu").style.top=yPos;
	menuStatus=1;
	return false;
}

function beitragssuche(){
	hidemenu_easy()
	if(document.selection){
    	    selection = selektieren ();
	}
	if(selection != ''){
		Fe=window.open('http://www.nittaya.de/search.php?mode=results&search_keywords='+selection+'&show_results=posts&sort_by=0&sort_dir=DESC','xx','');
	}else{
		alert('Bitte markieren Sie erst einen Begriff!');
	}
	hidemenu_easy()
}

function google(){
	hidemenu_easy()
	if(selection != '' && selection.length>=3){
		Fe1=window.open('http://www.google.de/custom?hl=de&q='+selection+'&channel=8476123127&client=pub-8285522064045225&meta=lr%3Dlang_de&ie=ISO-8859-1&oe=ISO-8859-1&cof=GALT%3A%23008000%3BGL%3A1%3BDIV%3A%23336699%3BVLC%3A000099%3BAH%3Acenter%3BBGC%3AFFFFFF%3BLBGC%3A000099%3BALC%3ADD6900%3BLC%3A000099%3BT%3A000000%3BGFNT%3A000099%3BGIMP%3A000099%3BFORID%3A1%3B','google','');
	}else{
		alert('Bitte markieren Sie erst einen Suchbegriff!');
	}
	hidemenu();
}

function yahoo(){
	hidemenu_easy()
	if(selection != '' && selection.length>=3){
		Fe1=window.open('http://de.search.yahoo.com/search?p='+selection+'&ei=UTF-8&x=wrt&meta=vl%3Dlang_de','yahoo','');
	}else{
		alert('Bitte markieren Sie erst einen Suchbegriff!');
	}
	hidemenu();
}

function wikipedia(){
	hidemenu_easy()
	if(selection != '' && selection.length>=3){
		Fe1=window.open('http://de.wikipedia.org/wiki/'+selection,'wikipedia','');
	}else{
		alert('Bitte markieren Sie erst einen Suchbegriff!');
	}
	hidemenu();
}

function rechtsklick(e){
	hidemenu_easy();
}

function selektieren(){
	if(window.getSelection){
		selection1=window.getSelection();
	}

  	if(document.getSelection){
  		selection1=document.getSelection();
  	}

	if(document.selection){
		selection1=document.selection.createRange().text;
	}
	return selection1;
}

function updateMaus(e){
	if(menuStatus==0){
		x = (document.all) ? window.event.x + document.body.scrollLeft : e.pageX;
		y = (document.all) ? window.event.y + document.body.scrollTop : e.pageY;
		bbx=x;
		bby=y;
	}
}

function menu_texte(){
	menuWidth=330, menuHeight=50;
	menuStatus=0;
	sp2="&nbsp;&nbsp;";
	sp5=sp2+sp2+"&nbsp;";
	oF="onfocus='if(this.blur)this.blur()'; ";

	document.write(
		"<div id='menu' style='position:absolute;top:-100;left:0;z-index:150'>"+
		"<table cellpadding='1' border=1 cellspacing='0' style='border-style:outset;border-width:1;border-color:#3a6c96;background-color:#FFFFFF'>"+
		"<tr><td><a class='menu' href='javascript:beitragssuche();'"+oF+">&nbsp;In der Beitragssuche suchen</a></td></tr>"+
		"<tr><td><a class='menu' href='javascript:google();'"+oF+">&nbsp;In Google suchen</a></td></tr>"+
		"<tr><td><a class='menu' href='javascript:yahoo();'"+oF+">&nbsp;In Yahoo suchen</a></td></tr>"+
		"<tr><td><a class='menu' href='javascript:wikipedia();'"+oF+">&nbsp;Bei Wikipedia suchen</a></td></tr></table></div>");

	menu2Width=330, menu2Height=50;
	menu2Status=0;
	sp2="&nbsp;&nbsp;";
	sp5=sp2+sp2+"&nbsp;";
	oF="onfocus='if(this.blur)this.blur()'";
}