// JavaScript Document



/**
  * show or hide the file field based on the users selection of the type field
**/
function hideFile(val) {
	var disp = (val == '1') ? "none" : "block";

	$('fileHide').style.display = disp;
}


