Ok, I found Javascript code to find the size of an image, but it doesn't work in jscript
javascript code:
var newImg = new Image();
newImg.src = imgSrc;
var height = newImg.height;
var width = newImg.width;
But 'Image' isn't recognized... I'm plowing on