<!--
//** the Javascript used to copy the url of a file from the file browsing window back into the document creation file path form field **//

function graburl(fileURL)

{
	if (window.opener && !window.opener.closed)
	window.opener.document.edit_doc.docfichier.value=fileURL;
	self.close();
	
}    

//-->
