

var diverses_hilfetitel = "";
var diverses_hilfetext = "";

function diverses_setHilfe(titel,text) {
	diverses_hilfetitel = titel;
	diverses_hilfetext = text;
}

function diverses_showHilfe(anchorname) {
	//// Create an object for a WINDOW popup
	// var helpwin = new PopupWindow(); 
	// Create an object 
	var helpwin = new PopupWindow(anchorname); 

	helpwin.autoHide(); 
	helpwin.autoHideIfClicked(); 
	helpwin.setSize(400,250);
	var html = null;
	if(false) {
    	html = "<html><head>\n"
            + "<title>"+ diverses_hilfetitel+"</title>\n"
            + "<meta http-equiv='Content-Type' content='text/html;CHARSET=iso-8859-1'>\n"
            + "<LINK REL=STYLESHEET HREF=\"/web/common/cambio.css\" TYPE=\"text/css\">\n"
            + "</head><body class=\"hilfewin\">\n"
            + "<div id=hilfewinid>\n"
            + diverses_hilfetext
            + "</div>\n"
            +"\n</body></html>";
	}
	else {
		html = diverses_hilfetext;
	}
	
	helpwin.populate(html);
	
	helpwin.showPopup(anchorname);
//	var cors = getAnchorWindowPosition(anchorname);
//	alert(" cors: " + cors.x + "/" + cors.y);
}

function diverses_showInfo(anchorname,titel,text) {
	diverses_setHilfe(titel,text);
	diverses_showHilfe(anchorname);
}