function getImageWidth(myImage) {
	x=new Image;
	x.src=myImage;
	
	return x.width;
}

function getImageHeight(myImage) {
	x=new Image;
	x.src=myImage;
	
	return x.height;
}
