Eumenio 0 Newbie Poster

are you using an optical mouse? i had one that kept jumping around the screen.

Eumenio 0 Newbie Poster

Its 64 bit windows 7 and i am logged in as administrator but its stilll not working??

Eumenio 0 Newbie Poster

I recently purchased a used pc that has no installed os or software. However there is a licence key on the pc for windows vista home premium. A firend has a vista home premium disc, and I was wondering if I could use his disc and just put in my key at intallation? Anybody know if this would work?

Eumenio 0 Newbie Poster

Close Windows Defender from system tray, Right click the little icon next to the clock and select Exit.

Eumenio 0 Newbie Poster

Yeah i agree It all depends because LinkedIn has a more corporate audience unlike Facebook but both have have their strengths and target audience, so you just have to know how best to use both to get your desired output.. So its not really a case of which is better but rather your target audience and desire results.

Eumenio 0 Newbie Poster

Yeah this is the best way and my suggestion too in google adwords tool.

Eumenio 0 Newbie Poster

I agree with you Airshow. Thanks!

javascript Syntax (Toggle Plain Text)

1.
FormToJson = function(sourceElementId, targetElementId) {
2.
var JsonToServer = new Object();
3.
JsonToServer.targetElementId = targetElementId;
4.
JsonToServer.formData = new Object();
5.
var form = document.getElementById(sourceElementId);
6.
for (var element = 0; element < (form.length - 1); element++) {
7.
JsonToServer.formData[form.elements[element].getAttribute("id")] = form.elements[element].value;
8.
}
9.
return JsonToServer;
10.
}