function help() { 
popup = window.open("about:blank","_blank","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=300,height=250,left=0,top=0"); 
popup.document.write('<html><head><title>hjälp</title>');
popup.document.write('<link rel="stylesheet" href="../style.css" type="text/css">');
popup.document.write('</head><body>');
popup.document.write('<h3>hjälp</h3><br>');
popup.document.write('<br> = sidbrytning<br><br>');
popup.document.write('<b> <b>fet text</b> </b><br><br>');
popup.document.write('<i> <i>kursiv text</i> </i><br><br>');
popup.document.write('<u> <u>understruken text</u> </u><br><br><br>');
popup.document.write('Du kan också använda andra html koder,<br>men se till att dom altid är stängda.');
popup.document.write('</body></html>');
popup.focus();
return true;
}

function check()
{
	input_box=confirm("Sind Sie sicher?");
	if (input_box==true)

	{ 
	// Output when OK is clicked
	return true;
	}

	else
	{
	// Output when Cancel is clicked
	return false;
	}
}
