// JavaScript Document
function getImgWidth(imgID) {
	var imgWidth = document.getElementById(imgID).width;
	
	return imgWidth;
}