function Msg()
{
	if(confirm(" You need to be a member to use this facility, \n     In case you have registered already,\n\t log in by pressing OK "))
	{
		var path = "/user";
		var fqry = window.location.href.substring(window.location.href.lastIndexOf("/"));
		window.location.href=path + fqry;
	}
}

