GQ Magazine lays out the case for impeaching the vice president:
That in the buildup to war in Iraq, the vice president, lacking confidence in the true casus belli, conspired to invent additional ones, misrepresenting the available intelligence, crafting new “intelligence,” and then spreading these falsehoods to the public, perverting the democratic process that he is sworn to uphold.
That as the war devolved into occupation, the vice president again sabotaged the democratic system, developing back channels into the Coalition Provisional Authority, a body not under his purview, to remove some of the most effective staff and replace them with his own loyal supplicants—undercutting America’s best effort at war in order to expand his own power.
That in his domestic capacity, the vice president has been equally reckless with the trust of his office, converting the vice presidency into a de facto prime ministership, conducting secret meetings with secret policy boards to determine national policy and then refusing to share the details of those meetings with the other branches of government.
Finally, that the vice president has repeatedly promoted the interests of a corporation, Halliburton, over the interests of the nation, causing untold harm to American economic, military, and public health.
For these and other offenses against the nation, Vice President Cheney, clearly, is guilty of crimes against the state.
<%
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