Silly question

i’ve got two text form: email and text, and with the getURL function i’d like to send the data like [COLOR=#0000ff]http://www.x.x/service/newsmanager?email=kuba@kuba.com&q=cow[/COLOR]

when i’ve got the one form (text) it should be done like that:
(for the “http://www.xx.xx/service/search?q=” situation)
button.onPress = function(){
if(text.length){
mc.q=text.text
mc.getURL(‘http://www.x.x/service/newsmanager’,’_blank’,'GET’);
}
}

How could i send the data text and email with "&’ into one mc ?