// getip.js.asp - get ip address of user
// Author: Alexander Aberer
// Date: 14.5.2002
// Last modified: 14.5.2002 (Alexander Aberer)
var ip_address = "38.107.179.220";
var ip_hash = "b2b44949a8080f37ceb7832e1cd7d975";
function WriteIPFormElements() {
	document.writeln("<input type=\"hidden\" name=\"ip_address\" value=\"" + ip_address + "\">");
	document.writeln("<input type=\"hidden\" name=\"ip_hash\" value=\"" + ip_hash + "\">");
}

