
function uploadPhoto(type, duns, description, width, height)
{
	var build_url = '/content/make_listing/imgupload.html?photo=' + type + '&amp;duns=' + duns + '&amp;photo_description=' + description + '&amp;width=' + width + '&amp;height=' + height;
	var ext_photo = $('gallery_photo');
	var ext_thumb = $(type);

	var ext_child = $A(ext_thumb.childElements());

	ext_child.each( function (child) {
		if(child.readAttribute('src'))
		{
			choose_thumb(child.readAttribute('src'));			
		}
	} );

	var x_position = (screen.width / 2) - 150;
	var y_position = (screen.height / 2) - 150;

	window.open(build_url, 'IMG_UPLOAD', 'width=300,height=300,resizable=no,scrollbars=no,toolbar=no,status=no,menubar=no,screenX=' + x_position + ',screenY=' + y_position);
}
