function validateSendFriendForm(){
	//alert('--new---hotelPrezentacja.js');
	var valid=true;

	exp=/^([\s,]*[a-zA-Z0-9\.\-_]+@[a-zA-Z0-9\.]+\.[a-zA-Z]{2,4}[\s,]*)+$/;

	if(!document.getElementById('addressTo').value){
		document.getElementById('contentInformFriendReceiverEmailTR').className='notValidValue';
		valid=false;
	}else{
		if(exp.test(document.getElementById('addressTo').value)){
			document.getElementById('contentInformFriendReceiverEmailTR').className='';
		}else{
			document.getElementById('contentInformFriendReceiverEmailTR').className='notValidValue2';
			valid=false;
		}
	}


	exp=/^[a-zA-Z0-9\.\-_]+@[a-zA-Z0-9\.]+\.[a-zA-Z]{2,4}$/;


	if(!document.getElementById('addressFrom').value){
		document.getElementById('contentInformFriendSenderEmailTR').className='notValidValue';
		valid=false;
	}else{
		if(exp.test(document.getElementById('addressFrom').value)){
			document.getElementById('contentInformFriendSenderEmailTR').className='';
		}else{
			document.getElementById('contentInformFriendSenderEmailTR').className='notValidValue2';
			valid=false;
		}
	}


	if(valid){

	  var ob = {
					success:function(o)
					{
						//alert('success');
		document.getElementById('mailSentInfo').style.visibility = 'visible';
		document.getElementById('addressTo').value = "";
		document.getElementById('fromName').value = "";
		document.getElementById('addressFrom').value = "";

		document.getElementById('wyslijZnajomemyForm').style.display='none';

					},
					failure:function(o)
					{
						//alert('failure');
					}
				}

				var oForm = document.getElementById('mailSend');
				YAHOO.util.Connect.setForm(oForm);

				//var gdzie = document.location.href;

				//var setUrl = 'index.php?page=hotelPrezentacja';
				//var param = "&mailInfo=ok";
				//var param = '&mailInf=sent';

				YAHOO.util.Connect.asyncRequest('GET', '/?page=hotelPrezentacjaMailInfo', ob, null);
				//YAHOO.util.Connect.asyncRequest('POST', '/?page=hotelPrezentacjaMailInfo', ob, param);

	}
}

function openGalleryPopup(id){
	window.open('http://www.wakacje.pl/?page=galeria&id_hotele='+id,'gallery','width=775,height=600,left=100,top=20,resizable=1,scrollbars=yes,menubar=no');
}

function init(){
	przewodnikInfoBookmarks=new BOOKMARKS();
	przewodnikInfoBookmarks.getBookmarkElements('przew_content_0','infoBookmark','infoSelectedBookmark','infoContent');
}
