ActionScript and JavaScript help

I have a link on a button that works fine like this:

on (release) {
getURL ("http://www.q101.com/SendIt/sendPagelink.aspx?PageReferrer=http://www.whatswronginchicago.com/testPage.aspx?"+“WWIC.videoID=” +WWIC.videoID, “_blank”);
}

But I want to add that same link url into the below button except because of all the things i am trying to include into the string the javascript gets all jacked up. because of the “” anyone have thoughts on this
Here is the link i want to add in:

http://www.q101.com/SendIt/sendPagelink.aspx?PageReferrer=http://www.whatswronginchicago.com/testPage.aspx?"+“WWIC.videoID=” +WWIC.videoID

on (release) {
getURL (“javascript:popUp(‘Want to add the above link here’)”);
}