function oeffnefensterblank (url,breite,hoehe) {
var Woerter = url.split("/");
fenster = window.open(url, "_blank","width="+breite+",height="+hoehe+",status=no,scrollbars=no,resizable=no,top=200 ,left=200");
fenster.document.write("<html><head><title>"+Woerter[1]+"</title></head><body leftmargin=\'0\' topmargin=\'0\' marginwidth=\'0\' marginheight=\'0\'><a href=\'#\' onclick=\'self.close();\'><img src="+url+" border=\'0\'></a></body></html>");
fenster.window.document.close();
fenster.focus();
}


function hide () {
  document.getElementById('test').style.visibility='visible';
}


$(document).ready( function(){
	$(".show").hide();
		$(".showmore p").toggle(
		
			function(){
				
				$(this).blur();
				$(".show").toggle();
				return false;
			},
			function(){
				
				$(this).blur()
				$(".show").toggle();
				return false;
			}
			
		);
		
	});
