//display the file path into the customize inputbox
function copyFileValue(){
	var pform = document.submit_photo;
	//alert (pform.photo.value + " here");
	var real_value = pform.photo.value;
	document.submit_photo.custom_input.value = real_value;
	
}


//display the file path into the customize inputbox
function copyFilePath(){
	var pform = document.submit_pdf;
	var real_value = pform.uploadedfile.value;
	document.submit_pdf.custom_input.value = real_value;
	
}
