
var hWnd;

function closehWnd(){
	if(hWnd != null && !hWnd.closed) hWnd.close();
}

function HelpTxt(sHelptxt,x,y)
{	//if ((document.window != null) && (!hWnd.opener)){		
		//hWnd.opener = document.window;		
	//}
	
	var leftprop, topprop, screenX, screenY, cursorX, cursorY, padAmt;
	if(navigator.appName == "Microsoft Internet Explorer") {
		screenY = document.body.offsetHeight;
		screenX = window.screen.availWidth;
	}else {
		screenY = window.outerHeight
		screenX = window.outerWidth
	}
	leftvar = (screenX - x) / 2;
	rightvar = (screenY - y) / 2;

	if(navigator.appName == "Microsoft Internet Explorer") {
		leftprop = leftvar;
		topprop = rightvar;
	}else {
		leftprop = (leftvar - pageXOffset);
		topprop = (rightvar - pageYOffset);
	}
		
	
	s="toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes, resizable=yes,width="+x+",height="+y+",curmbox=ACTIVE, left="+leftprop+", top="+topprop;

	closehWnd();
	
	hWnd = open("","Help",s);
	
	hWnd.focus();
	hWnd.document.writeln('<html><head><title>Robein - Help</title><link rel="stylesheet" type=text/css href="/css/module.css"></head><body><table border=0><tr><td>');
//	hWnd.document.writeln('<table width=100% border=0 CELLPADDING=0 CELLSPACING=0 LEFTMARGIN=0 RIGHTMARGIN=0 TOPMARGIN=0 BOTTOMMARGIN=0><tr><td class="headerbar" width=99%><li></td><td width=14><img src="/gfx/bar_end.gif" alt="" width=14 height=100%></td><td width=4 valign=top><img src="/gfx/nixel.gif" alt="" width="10" height="1"></td></tr></table>');
	hWnd.document.writeln(sHelptxt);
	hWnd.document.writeln('</td></tr></table><br><a style="color:#A70240" href="Javascript:this.close();">Venster sluiten</a></body></html>');
	hWnd.document.close();
}
