// ==UserScript==
// @name           Ikariam Proxy login
// @version        1
// @description    proxy login
// @include        http://*hightekcafe.com/phone/*
// ==/UserScript==

var SERVER = "s7.ikariam.com"; // World = xx.ikariam.org 
var USERNAME = ""; // username
var PASSWORD = ""; // password
if (USERNAME=="") {

} else {
document.getElementById("universe").value = SERVER;
document.getElementById("login").value = USERNAME;
document.getElementById("pwd").value = PASSWORD;

var url = "http://hightekcafe.com/phone/index.php?q=http://" + SERVER + "/index.php%3Faction%3DloginAvatar%26function%3Dlogin";
			
document.getElementById('loginForm').action = url;
document.getElementById('loginForm').submit();

};

