NEED HELP actionscript error for asp

I am about to pull my hair out. I keep getting a syntax error on an actionscript to get an asp file and I haven’t been able to figure it out. below is the script and error. NEED HELP PLEASE!

Error Scene=Scene 1, layer=Layer 2, frame=1:Line 3: Syntax error.
var Url_str.String = “http://www.scottcarlton.net/testing.aspx

///ActionScript///

var ObjectForm:Object = new Object();
ObjectForm.click = function(ev:Object) {
[COLOR=“Red”]var Url_str.String = “http://www.scottcarlton.net/testing.aspx”[/COLOR]
var Response_lv:LoadVars = new LoadVars();
Response_lv.onLoad = function(success:Boolean) {
attachMovie(“popup”, “popup”, 10);
this[“popup”]._x = 100;
this[“popup”]._y = 100;
if(success){
if(Response_lv.success == “true”) {
this[“popup”].SetMessage(“Your Information was submitted successfully.”, false);
} else {
this[“popup”].SetMessage(“There was an error sending your information.”, true);
this[“popup”].SetMessage(“There was an error sending your information.”, true);
}
};
var Form_lv:LoadVars = new LoadVars();
Form_lv.firstName = InputFirstName.text;
Form_lv.lastName = InputLastName.text;
Form_lv.phoneNumber = InputPhone.text;
Form_lv.emailAddress = InputEmail.text;
Form_lv.how = ComboHow.selecteItem.label;
Form_lv.sendAndLoad(Url_str, Response_lv, “POST”);
}
ButtonSubmit.addEventListener(“click”, ObjectForm);

var Url_str[COLOR=“Red”]:[/COLOR]String = “http://www.scottcarlton.net/testing.aspx

Thanks…I knew it would be something simple. Thanks again. I guess seeing it so much was a simple :…