$('.fo-link').mouseup(function() { if(navigator.cookieEnabled) pop_w(); });
function pop_w() {
	if($.cookie('sgi_pop') != '1') {
		//var arr=['http://gnevbogov.ru/start_with_battle?utm_source=Smallgames&utm_medium=pop-under&from=Smallgames&traff_source=Smallgames'];
                var arr=['http://www.cityads.ru/click-KIGQBKI6-URNKHQY7'];
		$pop_URL=arr[randomNumb(0,arr.length - 1)];		
		$show_w=window.open($pop_URL,"_blank","toolbar=yes, location=yes, directories=yes, status=yes, menubar=yes, scrollbars=yes, resizable=yes, copyhistory=yes");
		if($show_w) {
			$.cookie('sgi_pop','1',{ expires: 7, path: '/' });
			$show_w.blur();
		}
	}
}
function randomNumb (m,n) {
  m = parseInt(m);
  n = parseInt(n);
  if (m == n) return m;
  return Math.floor( Math.random() * (n - m + 1) ) + m;
}
