// JavaScript Document
 
function novyokno( odkaz )
{
    var test;
		
	test = ! window.open( odkaz );
	return test;
}

function obrokno( foto )
{
    window.open( foto, 'foto', 'width=640,height=480,menubar=no,resizable=yes,left=0,top=0,toolbar=no,location=no,directories=no,status=no,scrollbars=yes' );
}


function ControlForm( frm )
{
	if( f = getObj( frm ) )
	{
		if( ControlVal( f.f_name, "Please, insert your name!", "text", 2 ) )
		{
		  if( ControlVal( f.f_country, "Please, insert country name!", "text", 1 ) )
		  {
			if( ControlVal( f.f_email, "Please, insert your email!", "email", 0 ) )
			{
        if( f.f_email.value==f.f_reemail.value) {
          if( ControlVal ( f.f_phone, "Enter the phone number, including international telephone country code.", "text", 6 ) )
            {
    			  if( ControlVal( f.f_adults, "Please, insert number of adults!", "numeric", 0 ) )
    			  {
    			    if( ControlVal( f.f_children, "Please, insert number of children!", "numeric", -1 ) && ControlVal( f.f_children, "Please, insert number of children!", "text", 0 ) )
      				{
      					return true;
      				}
    			  }
          }
        } else {
          alert('Please make sure that both email addresses are the same.');
          f.f_reemail.focus();
        }
		  }
      }
		}
	}
	else
	{
		alert( 'Sorry, your computer no accept this javascript!' );
	}
	
	return false;
}
