Good, comprehensive interview with new stuff on Iraq. There's also this:
Salvatore: In your book, My Life, you wrote very movingly about wanting to save your marriage. Mr President, what insights and modifications have you felt that you have wanted to focus on to keep your marriage now healthy and strong?
Clinton: I think the most important thing, particularly for us, because Hillary has to go to Washington every week, is to maintain the communication. To me, the most important thing is for people, particularly when their children are grown, to stay involved in each other's lives. You have to continue to be each other's best friend.
That's what we really work on. Sometimes we're better at it than other times. But we've built a whole life together. It's always easy to bag it. It's harder to stay. But you know, after a certain point it seems like a lot of trouble to start again, too. There's something to be said for sticking.
Hear hear. And it's true when the kids are little, too...
<%
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