function ContactFields()
{
	oForm = document.getElementsByName('iForm'); if (oForm.length < 1) return false;

	if (typeof(window) != "undefined" && typeof(window.navigator) != "undefined" && typeof(window.screen) != "undefined")
	{
		oCheck = document.getElementsByName('iCheck');
		if (oCheck.length > 0)
			oCheck[0].value = (window.navigator.cookieEnabled ? 1 : 0) + ";" + window.screen.width + ";" + window.screen.height;
	};

	oForm[0].submit();

	return true;
};
