function DoUpload() {
	theFeats = "height=120,width=500,location=no,menubar=no,resizable=no,scrollbars=no,status=no,toolbar=no";
	theUniqueID = (new Date()).getTime() % 1000000000;
	window.open("progressbar.asp?ID=" + theUniqueID, theUniqueID, theFeats);
	document.myform.action = "progressupload5.asp?ID=" + theUniqueID;
	document.myform.submit();
}
function SelectAll(State) {
	for (var c=0; c < frmGallery.elements.length; c++) {
		if (frmGallery.elements[c].type == "checkbox") {
			frmGallery.elements[c].checked = State;
		}
	}
}

function InvertCheckBox(FormName) {
	for (var c=0; c < FormName.elements.length; c++) {
		if (FormName.elements[c].type == "checkbox") {
			if (FormName.elements[c].checked) {
				FormName.elements[c].checked = 0;
			} else {
				FormName.elements[c].checked = 1;
			}
		}
	}
}
