InternetPostData()

Example 1:

var url = "http://www.example.com/cgi-bin/checkdata.pl"
// set up URL.
var out = InternetPostData(url,"data=Opus")
// will return a string: "data=Opus"
out = InternetPostData(url,"data=Opus",true)
// will return an object with member 'data' set to "Opus".

Example 2: 

// To send an Object, first set up the Object:
var obj = new Object()
obj.Name = "John"
obj.Age = 21
obj.ShoeSize = 8 
out = InternetPostData(url, obj, true)
// will return an object with Name, Age and ShoeSize members set.