function any_pop(url,width,height)

	{

		newWin = window.open(url, "", "width="+ width +",height="+ height +",toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=no");

		newWin.focus();

	}

