function help() { 
popup = window.open("about:blank","_blank","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=500,height=400,left=0,top=0"); 
popup.document.write('<html><head><title>Newswriter Help</title>');
popup.document.write('<link rel="stylesheet" href="style.css" type="text/css">');
popup.document.write('</head><body>');
popup.document.write('<h3>Admin Help</h3><br>');
popup.document.write('<table width="500" border="0" cellspacing="0" cellpadding="5">');
popup.document.write('<tr><td>Highlight all 3 lines of text. Press &quot;Control&quot; + &quot;C&quot; to copy. </td></tr>');
popup.document.write('<tr><td>Paste the 3 lines of text in the blank field by pressing &quot;Control&quot; + &quot;V&quot; </td></tr>');
popup.document.write('<tr><td>Replace the place holder text with information that pertains to the event. Click Save.</td></tr></table><br>');
popup.document.write('<textarea name="textfield" cols="60" rows="4"><b>Put the date here</b><br>');
popup.document.write('<span class="titleformatting">Put your title here</span><br>');
popup.document.write('Put the description here</textarea>');
popup.document.write('</body></html>');
popup.focus();
return true;
}

function check()
{
	input_box=confirm("Are you absolutely positive?");
	if (input_box==true)

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

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