
domain = "sto21.ru";
email  =  "info@" + domain;

function updateLinks() {
	if (document.getElementsByTagName) {
		links_list = document.getElementsByTagName('a');
		for(i=0; i<links_list.length; i++) {
			if (0 == links_list[i].rel.indexOf('ext:')) {
				links_list[i].target = links_list[i].rel.substring(4, links_list[i].rel.length);
			}
		}
	}
}

function OpenLink(wlink){
	re = new RegExp("[^a-z0-9_]","g");
	namewindow = wlink.replace(re,'');
	window.open(wlink, "mamutkin" + namewindow, "height=550,width=620,xposition=" + ((screen.width / 2) - 310) + ",yposition=" + ((screen.height / 2) - 250) + ",top=" + ((screen.height / 2) - 300) + ",left=" + ((screen.width / 2) - 310) + ",toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=0");
}

