Critics on the right who are accusing the NY Times of releasing the domestic spying story (or as it's known, on FNC: "The Program...") when it did, just so it could stick it to Bush before the Patriot Act vote are, I think, giving the paper far too much credit, as is anyone who is lauding the paper for striking a blow against presidential tyranny. What we now know is that the Times knuckled under to the administration by failing to report what it had learned before the 2004 presidential election -- depriving voters of important information that they deserved to know about the man asking for reelection to the office of president, and violating, I should think, every possible journalistic principle regarding the press' proximity to power. We also now know that the paper finally released the story, not for some high-minded social or journalistic reason, but to help the reporter's book. Nice job, Sulzberger and Keller. You're really raising the bar.
By the way, more than a few people are asking whether Bush's actions, and apparent violations of the FISA law (one of those laws he's sworn to uphold as president) constitutes an impeachable offense...
<%
dim done
done = request.form("done")
if done = "" then
done = "No"
%>
Tell a friend
<%
Else
if request.form("done") = "Yes" then
'sets variables
dim email, sendmail
email = request.form("email")
Set sendmail = Server.CreateObject("CDONTS.NewMail")
'put the webmaster address here
sendmail.From = "webmaster@aspbasics.com"
'The mail is sent to the address entered in the previous page.
sendmail.To = email
'Enter the subject of your mail here
sendmail.Subject = "Check out this website"
'send a specific page or send a site url
dim url
'url = Request.ServerVariables("HTTP_REFERER")
url = "http://www.aspbasics.net"
'This is the content of the message.
sendmail.Body = "Site recommendation from a friend!" & _
vbCrlf & vbCrlf & "A friend has sent you this email and thought you would should check out this site." & _
vbCrlf & url & vbCrlf
'this sets mail priority.... 0=low 1=normal 2=high
sendmail.Importance = 1
sendmail.Send 'Send the email!
response.redirect Request.ServerVariables("HTTP_REFERER")
'Response.write ("Sent to ") & email
End if
End if
%>
"[T]he practice of arbitrary imprisonments, have been, in all ages, the favorite and most formidable instruments of tyranny.' Alexander Hamilton, Federalist No. 84, August, 1788