var game_linker = new Object();

game_linker.game_name = function() { return "Carnage"; };
game_linker.game_domain = function() { return "http://www.carnage.ru"; };
game_linker.register_link = function() { return 'http://'+this._carnage_domain()+'.carnage.ru/reg.pl'; };
game_linker.user_info_link = function(user)
  {
    return 'http://'+this._carnage_domain()+'.carnage.ru/inf.pl?user='+user;
  };
game_linker.user_info_icon = function() { return 'http://img.carnage.ru/i/inf.gif'; };
game_linker.user_info_icon_male = function() { return 'http://img.carnage.ru/i/infM.gif'; };
game_linker.user_info_icon_female = function() { return 'http://img.carnage.ru/i/infF.gif'; };
game_linker.user_info_icon_width = function() { return 12; };
game_linker.user_info_icon_height = function() { return 12; };

game_linker.null_img_url = function() { return "http://img.carnage.ru/i/null.gif"; };

game_linker.smiles_url = function() { return "http://img.carnage.ru/i/sm/"; };

game_linker.smiles = 
		["agree","angel","badevil","badtease","beer","boy","bye","chao","cheek","plak","evil","ponder","girl",
		 "gy", "haha","hi","laught","mib","no","notknow","nunu","poll","protest","roll","rupor","shuffle","tongue",
		 "upset", "wink","wow","yawn","yes","eyes","fire","ok","pray","smash","agent","swear","eusa","fingal",
		 "flame", "kz","moder","duel","help","lebedi","vodka","vals","boylove","girllove","stp","hb","invalid",
		 "smoke","susel","joker","sneaky","kap","kuku","skull","ura","order","chaos","hug","maniak","tango","ma",
		 "bolen","kach","kiss","dustman","ghost","rev","appl","confused","hit","loony","serenada","stinky",
		 "budo","kosa","klizma","dwarf","yahoo","roga","dud","chupa","friday","sleep","tooth","wow2",
		 "strah","007","buket","nobravo","beggar","box","bravo","cry","death","defender","dont","eating",
		 "figa","idea","kruger","mad","ok2","pank","pray2","priz","diler","shock","smoked","zasos","bang",
		 "hiya","lol","gipno","q","zub","newyear","moroz","snowgirl","medic","angel2","archer","ass1",
		 "ass2","candleman","compkiller","flytryin","gimme5","horseman","loveposter","sexover","skripka",
		 "waitlover","writer","victory","air_kiss","king","sv3"
		];

game_linker.smiles_x =
		[44,41,20,29,59,21,20,25,39,23,20,20,21,33,26,29,20,20,20,39,24,37,33,20,36,20,20,20,20,20,20,20,20,20,
		 25,35,34,20,43,26,23,31,20,85,101,27,75,29,93,20,20,42,31,74,21,64,33,20,50,24,23,40,48,47,60,100,66,
		 48,23,40,51,52,30,39,28,19,45,36,33,53,54,48,37,46,42,65,64,27,57,21,33,32,35,23,50,35,35,28,35,47,70,
		 60,28,25,27,48,34,48,22,28,27,50,36,63,33,44,30,23,17,20,42,20,47,64,35,35,37,80,25,25,29,38,36,41,60,
		 51,60,51,51,43,30,24,28,43
		];

game_linker.smiles_y =
		[20,21,20,20,20,22,20,20,20,20,23,20,22,20,21,22,20,20,20,20,20,25,25,20,20,20,20,24,20,20,20,20,20,20,
		 23,22,29,20,20,22,20,20,26,20,34,20,25,31,24,22,22,24,29,23,22,29,31,20,36,21,23,40,33,32,30,37,25,24,
		 30,31,23,33,40,24,21,19,22,30,52,28,37,23,37,48,27,32,37,24,28,22,23,20,28,23,30,26,27,22,26,32,40,30,
		 29,20,25,28,27,23,21,31,24,27,30,25,42,27,23,36,17,20,30,22,48,31,35,31,27,40,26,28,27,29,37,20,42,20,
		 33,45,36,55,23,26,28,25
		];

game_linker.smiles_page =
		[2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,2,1,2,1,1,
		 2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,2,1,2,2,1,2,1,1,1,2,1,1,2,1,1,1,1,1,2,1,1,1,1,1,2,2,
		 1,1,1,1,1,1,1,1,1,2,1,2,1,2,1,1,1,1,1,1,2,1,1,1,1,2,1,1,1,1,1,2,1,2,2,2,2,1,1,1,1,2
		];

game_linker._carnage_domain = function()
  {
   var domains = [ "arkaim", "lutecia", "avrora", "kitezh", "morion", "sarkel", "ankor" ];
   var index = (Math.round((Math.random()*(domains.length - 1))));
   return domains[index];
  };