Looks like the Bush administration's anti-poll rhetoric really had an effect on Iran -- unfortunately it was precisely the opposite effect they were looking for. It will be interesting to see how things progress now that Tehran's hardline former mayor is in charge (well, Ayatollah Khameni is really in charge, but there you go, Iranian democracy...) Then again, maybe they're more like us than we think: the Iranian poll has its own complaints of vote fraud...)
So far, the Iranian blogosphere is responding to the landslide poll result with despair, but the truth is, nobody really knows what's in store for the West now, although two things are clear: nuclear talks between Iran, the E.U. and the U.S. just got a lot more complicated, and Iran just became the next Venezuela, complete with tons of oil for the nationalizing, and a leader not predisposed to pro-American feelings.
<%
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