Hi all,

I'm wating for a client to pay up and would like to get the money soon. They have told me the payment is in the mail but it's been over a week and I have not received anything. Anyway, I would like to set up a movie that will "expire" if the payment is not received by a certain date (considering he may lock me out of the site and I'll have no way of removing the files already uploaded). I've tried this piece of code, but it doesn't want to work:

expiryDATE = "2/8/2003";
myDate = new Date();
dateTODAY = (myDate.getMonth()+"/"+myDate.getDate()+"/"+myDate.getFullYear());
dateEXPIRE = "expiryDATE";
if (dateTODAY >= dateEXPIRE) {
gotoAndStop("Payment", 1);
} else {
gotoAndPlay("Scene 3", 1);
}

Any suggestion as to what I'm doing wrong? (I mean besides uploading the files before I was paid! It's a long story and they were an affiliate of my former employer.)

Thanks,

Liquid4012