function myFileBrowser (field_name, url, type, win) {

	cmsURL = "http://localhost/dev_production/entertainsa/admin/javascript/tiny_mce/myFileBrowser.php";

	tinyMCE.activeEditor.windowManager.open({
			file : cmsURL,
			title : 'My File Browser',
			width : 520,  // Your dimensions may differ - toy around with them!
			height : 400,
			resizable : "no",
			inline : "yes",  // This parameter only has an effect if you use the inlinepopups plugin!
			close_previous : "no"
	}, {
			window : win,
			input : field_name,			
	});
	return false;
}
