Load variables without popping up new browser window

Hey guys,

I’ve created a standalone Kiosk that sends data input from the user to an ASP page.

Everything is working perfectly except that since this is a Kiosk, there is no need for browsers. When I send the info to the ASP page, it pops up a new browser window.

I know I’ve seen where you can program it so that this does not happen but I don’t know how.

Anyone out there know how to do this?

Here is my code:


on(release){
v = new LoadVars();
v.send(“http://www.cube-interactive.com/clients/healthsource/test/addrecordsql3.asp?question1="+question1.text+"&question2="+question2.text+"&question3="+question3.text+"&question4="+question4.text+"&question5="+question5.text+"&final="+final,"","POST”);
}

v = new LoadVars();
v.variable1 = “whateverhere”;
v.send(“http://www.url.com/url.php”, “_self”, “POST”);

This will POST variable1, and will also go to the url at the same window, Sorry for not posting earlier.