function openWindow(url) {
	window = window.open(url,'filemanager','width=800,height=500,top=15,screenY=15,left=15,screenX=15,toolbar=no,status=no,location=no,directories=no,menubar=no,scrollbars=yes,resizable=yes,fullscreen=yes,channelmode=yes');
}

function setValueInput(path,id) {
	window.opener.document.getElementById(id).value = path;
	window.close();
}