Travian Message Popup

By ondy1985 Last update Jun 16, 2007 — Installed 34,377 times. Daily Installs: 48, 25, 37, 37, 36, 39, 43, 38, 28, 33, 17, 23, 24, 28, 28, 33, 26, 58, 23, 28, 30, 34, 25, 31, 27, 9, 25, 25, 33, 21, 34, 36
// ==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;");		
	}
}