// Javascript function to launch amFM file manager
// by Stephen Ware

// parameter 'path' should be the path to amfm.php and should not include 'amfm.php' at the end
function launchamfm(path){
	if(path.substring(path.length-1) != '/') path += '/';
	window.open(path+'amfm.php?mode=manage&goin=&center=yes', 'File_Manager', 'height=638,width=760,toolbar=no,location=no,status=yes,menubar=no,scrollbars=no,directories=no');
}
