Travian Message Popup

By ondy1985 Last update Jun 16, 2007 — Installed 34,850 times. Daily Installs: 23, 28, 30, 34, 25, 31, 27, 9, 25, 25, 33, 21, 34, 36, 23, 16, 29, 34, 43, 23, 23, 20, 31, 20, 18, 29, 18, 25, 32, 17, 36, 52
// ==UserScript==
// @name           Travian Message Popup
// @namespace      Travian:ondy1985
// @description    Pops up message detail in new window
// @include        http://*.travian.*/berichte.php*
// @include        http://*.travian.*/nachrichten.php*
// @exclude        http://*.travian.*/*?id=*
// ==/UserScript==

var w = window.innerWidth;;
var h = window.innerHeight;

var popW = 700, popH = 600;

var leftPos = (w-popW)/2, topPos = (h-popH)/2;

for (var i = 0; i < document.links.length; i++) {
	var a = document.links[i];	
	if (a.href.search(/(be|nach)richte[n]?[.]php[?]id=/i) != -1) {
		a.setAttribute("onclick", "window.open('" + a.href + "', new Date().getTime(), 'scrollbars=1,width="+popW+",height="+popH+",top="+topPos+",left="+leftPos+"'); return false;");		
	}
}