It may take awhile, but when Americans get it, they get it:
The most recent Gallup poll this month found that 52% of adult Americans want to see all U.S. troops out of Iraq within a year, with 19% advocating immediate withdrawal. In the summer of 1970, Gallup found that 48% wanted a pullout within a year, with 23% embracing the “immediate” option. Just 7% want to send more troops now, vs. 10% then.
At present, 56% call the decision to invade Iraq a “mistake,” with 41% disagreeing. Again this echoes the view of the Vietnam war in 1970, when that exact same number, 56%, in May 1970 called it a mistake in a Gallup poll.
And while we lost another four Marines in Anbar Province in Iraq this weekend, we have to deal with aberrations like this guy, who further taint the image of our uniformed military.
Too bad the major TV and cable news networks have cancelled the war. Otherwise, even more Americans might want out.
<%
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