function openHelpWindow(strHelp, stylePath){
	var helpWin;
	var wf;
	var title;
	var height;
	var width;
	
	winName = 'help';
	winHeight = 500;
	winWidth = 630;
	
	wf += "resizable=no";
	wf += ",scrollbars=yes";
	wf += ",menubar=yes";
	wf += ",toolbar=no";
	wf += ",directories=no";
	wf += ",location=no";
	wf += ",status=no";
	wf += ",width=" + winWidth;
	wf += ",height=" + winHeight;
	
	helpWin=window.open('', winName, wf);
	
	helpWin.document.write('<HTML>');
	helpWin.document.write('<HEAD>');
	helpWin.document.write('<META http-equiv="Content-Type" content="text/html; charset=iso-8859-1">');
	helpWin.document.write('<TITLE>Hjälp</TITLE>');
	//helpWin.document.write('<link rel="stylesheet" href="style.css">');
	
	if (arguments.length > 1)
		helpWin.document.write('<link rel="stylesheet" href="' + stylePath + '">');
	else
		helpWin.document.write('<link rel="stylesheet" href="style.css">');

	helpWin.document.write('</HEAD>');
	helpWin.document.write('<BODY class="help"><table cellpadding="5" cellspacing="0" width="590"><tr><td>');
	helpWin.document.write(strHelp);
	helpWin.document.write('</td></tr></table>');
	helpWin.document.write('<table cellpadding="5" cellspacing="0" width="590"><tr><td><p class="help"><a href="javascript:window.close();">Stäng fönster</a></p>');
	helpWin.document.write('<p class="help">&nbsp;</p></td></tr></table>');
	helpWin.document.write('</BODY>');
	helpWin.document.write('</HTML>');
}

function openHelpWindow_1(helpFile)
{
	var helpWin;
	var wf;
	var title;
	var height;
	var width;
						
	winName = 'help';
	winHeight = 500;
	winWidth = 630;
						
	wf += "resizable=no";
	wf += ",scrollbars=yes";
	wf += ",menubar=yes";
	wf += ",toolbar=no";
	wf += ",directories=no";
	wf += ",location=no";
	wf += ",status=no";
	wf += ",width=" + winWidth;
	wf += ",height=" + winHeight;
						
	helpWin=window.open(helpFile, winName, wf);
}