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=350,left=0,top=0"); 
popup.document.write('<html><head><title>News Help</title>');
popup.document.write('<link rel="stylesheet" href="style.css" type="text/css">');
popup.document.write('</head><body>');
popup.document.write('<font color=#ffffff><h3>Promemoria tags</h3><br>');
popup.document.write('&#60;br&#62; = a capo<br><br>');
popup.document.write('&#60;b&#62; <b>Bold text</b> &#60;/b&#62;<br><br>');
popup.document.write('&#60;i&#62; <i>Italic text</i> &#60;/i&#62;<br><br>');
popup.document.write('&#60;u&#62; <u>Underlined text</u> &#60;/u&#62;<br><br><br>');
popup.document.write('&#60;font color=red&#62; <u>Colore del testo</u> &#60;/font&#62;<br><br><br>');
popup.document.write('&#60;img src=http://www.filoamstaff.com/filo.jpg&#62; <b>Inserimento immagine</b><br><br><br>');
popup.document.write('&#60;a href=http://www.filoamstaff.com&#62;<b>Nome del link</b>&#60;/a&#62; <b>Inserimento Link</b><br><br><br>');

popup.document.write('</body></html>');
popup.focus();
return true;
}

function check()
{
	input_box=confirm("Sicura di volerlo cancellare?");
	if (input_box==true)

	{ 
	// Output when OK is clicked
	return true;
	}

	else
	{
	// Output when Cancel is clicked
	return false;
	}
}