
function JS_Menu_Click(s_Parm_Menu_URL)
{

	var s_Temp_Current_Location = String(parent.frames['Frame_Menu'].location);
	
	//#
	//### Amend the Frame Menu Location
	//#
	
	if (s_Temp_Current_Location.indexOf(s_Parm_Menu_URL) < 0)
	{
		parent.frames['Frame_Menu'].location  = s_Parm_Menu_URL;
	}
}

