Submit button in flash

Hi all, I have made a small button in Flash 5.0 to replace my
“input type=“submit” value=“Login!”” regular submit button that I use in ASP forms. How do I make it work though? What is the action script? I have a form in ASP and then the submit button is a flash button. How do I tell the flash button to go where the regular submit button went using the POST method?

Thanx

Here is the code

on (press) {
getURL (“javascript:document.login.submit();”, “_self”);
}

Thanx all!