gsingh2011 0 Junior Poster in Training

I need to call a script on a website but I don't want to open a browser. I have the code in python as,
response = urllib2.urlopen('http://www.sygmd.org/email2.php?message=' + message)

but I need this to work on all windows computers, not just the ones with python and I can't make the script an exe, so I need to do it in C++. Basically it "opens" the link (as an object) which effectively calls the script I need. Can I do this in C++? If I was unclear, let me know, I'll explain it again.