  
  
  
  var strTestd = '<div style="border-style:solid;border-width:1px;padding:10px;width:340px;background-color:white;">';
	strTestd += '<div class="text">Sie sind VDW-Mitglied, haben aber noch keine Zugangsberechtigung zu unserem Informationspool?<BR><BR>';
	strTestd += 'Fordern Sie das Anmeldeformular an bei ';
	strTestd += 'Ursula Treyz: u.treyz@vdw.de,  Tel. 069 756081-32</div>';
	strTestd += '</div></div>';
	
  var strTeste = '<div style="border-style:solid;border-width:1px;padding:10px;width:340px;background-color:white;">';
	strTeste += '<div class="text">Sie sind VDW-Mitglied, haben aber noch keine Zugangsberechtigung zu unserem Informationspool?<BR><BR>';
	strTeste += 'Fordern Sie das Anmeldeformular an bei ';
	strTeste += 'Ursula Treyz: u.treyz@vdw.de,  Tel. 069 756081-32</div>';
	strTeste += '</div></div>';
	
	
	
	
	
	var ttTestd = new ToolTip(strTestd);
	var ttTeste = new ToolTip(strTeste);
	
	
	document.onload      = ttTestd.Update,ttTeste.Update;
  document.onmousemove = ttTestd.Update,ttTeste.Update;





	function ToolTip(c)
	{
		var tool = String('ToolTipFeld');
		var HTML = c; 
	
		this.Show = function() 
		{
			try {
			  var t = document.getElementById(tool);
		    t.innerHTML = HTML;
		    t.style.display = "block";
			}	catch (e) { /*	document.write("Start  : " + e); */ }
		};
		
	  this.Hide = function() {
	  	try {	
	  		var t = document.getElementById(tool);
	  		t.style.display = "none"; 
  		  t.innerHTML = "";
	  	}	catch(e) { /* document.write("Hide   : " + e); */ }
	  };
	  
	  
		this.Update = function (d) {
	    try {
	        var x = (document.all) ? window.event.x + document.body.scrollLeft : d.pageX;
	        var y = (document.all) ? window.event.y + document.body.scrollTop  : d.pageY;
	        var t = document.getElementById(tool);
	        if (t && t.style) { 
	        		t.style.left = (x - 340) + "px";
	        	 	t.style.top  = (y + 30) + "px";
	        }
	  	} catch(e) { /* document.write("Update : " + e); */ }
	  };
	  
	  return this; 
	}






 

