if(window["gToMoveOut_Loaded"] != true)
{
	window["gToMoveOut_Loaded"] = true;


	function showAddForm(path,filename) 
	{

		var centerX = screen.width /2 - 150;
		var centerY = screen.height /4 - 100;
		
		var win = window.open(syspath+"add_form.cfm?xml="+path+"/"+filename, "ShowAddForm", "left=" + centerX + ", top=" + centerY + ", width=300, height=200, location=no, menubar=no, resizable=no, scrollbars=auto, status=no, titlebar=no, toolbar=no");
		win.focus();
	}
	function showEditForm(e,path,filename, id, params)
	{

		var centerX = screen.width - 280;
		var centerY = screen.height /8 - 100;
		var win = window.open(syspath+"edit_form.cfm?xmlpath="+path+"&xmlfile="+filename+"&id=" + id + params, "ShowEditForm", "left=" + centerX + ", top=" + centerY + ", width=260, height=800, location=no, menubar=no, resizable=yes, scrollbars=auto, status=no, titlebar=no, toolbar=no");
		win.focus();
		
		if (e.stopPropagation) 
		{ 
			e.stopPropagation(); 
		} 
		else 
		{ 
			e.cancelBubble = true; 
		}
		
	}
	function showEditView(path,filename, params)
	{

		var centerX = screen.width - 280;
		var centerY = screen.height /8 - 100;
		var win = window.open(syspath+"edit_view.cfm?xmlpath="+path+"&xmlfile="+filename+ params, "ShowViewForm", "left=" + centerX + ", top=" + centerY + ", width=260, height=800, location=no, menubar=no, resizable=yes, scrollbars=auto, status=no, titlebar=no, toolbar=no");
		win.focus();
		
	}	
}