
function Get_Cookie( check_name ) {

	var a_all_cookies = document.cookie.split( ';' );
	var a_temp_cookie = '';
	var cookie_name = '';
	var cookie_value = '';
	var b_cookie_found = false;

	for ( i = 0; i < a_all_cookies.length; i++ )
	{

		a_temp_cookie = a_all_cookies[i].split( '=' );

		cookie_name = a_temp_cookie[0].replace(/^\s+|\s+$/g, '');

		if ( cookie_name == check_name )
		{
			b_cookie_found = true;
			if ( a_temp_cookie.length > 1 )
			{
				cookie_value = unescape( a_temp_cookie[1].replace(/^\s+|\s+$/g, '') );
			}
			return cookie_value;
			break;
		}
		a_temp_cookie = null;
		cookie_name = '';
	}
	if ( !b_cookie_found )
	{
		return false;
	}
}


  function sc(value){

  var adress = value ;

   var date = new Date();
    date.setTime(date.getTime() + 3 * 24 * 60 * 60 * 1000);  // prve cislo j epocet dni pre platnost cookies
    value+='; expires=' + date.toGMTString();

   // presmerovani

	var r = '#conf';

	if(window.location != "http://www."+adress+".cz/"){
		r = '#conf';
	}

   window.location.href= "http://www."+adress+".cz/uvod";

   document.cookie="prvni_nazev=" + value;

  }

  function redirect(){

	$('#basic-modal-content').modal();

  }

	function nas_rat(){
   var hiddiv  = document.getElementById('basic-modal-content');
           hiddiv.style.display="block";
           hiddiv.style.width="900px";
           hiddiv.style.background="#fff";
           hiddiv.style.position="fixed";
           hiddiv.style.height="400px";
           hiddiv.style.top="0";
           hiddiv.style.left="auto";
	}


