if (document.images) {
		img1 = new Image();
		img2 = new Image();
		img3 = new Image();
		img4 = new Image();
		img5 = new Image();
		img6 = new Image();
		img7 = new Image();
		
		img1.src = "images/menu/productions_on.jpg";
		img2.src = "images/menu/recordings_on.jpg";
		img3.src = "images/menu/studyings_on.jpg";
		img4.src = "images/menu/fun_on.jpg";
		img5.src = "images/menu/work_on.jpg";
		img6.src = "images/menu/tickets_on.jpg";
		img7.src = "images/menu/auditions_on.jpg";
		
	}

function check_visibilityTgo(id1,id2,codeImgDiv)
		{
			obj = document.getElementById(id2).style.display;		
			document.getElementById(id2).style.display=(obj?"":"none")		
			
			if (obj)
			{
				document.getElementById(id1).className='maintextTGOVOT_bold';

       	var url = "/ajax2.php?main=generatePassword ";  
	      new Ajax.Updater(codeImgDiv, url, {asynchronous:true});
//				document.getElementById('codeImg').innerHTML=generatePassword();
			
			$divNameToHide=(id2 == 'commentsDiv')? 'commentsDivLast' : 'commentsDiv';
			
			$divToHide=document.getElementById($divNameToHide);
			
			if ($divToHide) $divToHide.style.display='none';
					
			}
			else{
				document.getElementById(id1).className='maintextTGOVOT';			
			}
		}
		
	function check_visibilityCommentTgo(id1,id2,id3,id4,id5)
		{
			obj = document.getElementById(id2).style.display;		
			document.getElementById(id2).style.display=(obj?"":"none")		
			
			obj2 = document.getElementById(id4).style.display;		
			document.getElementById(id4).style.display=(obj2?"":"none")	
			
			if (obj){
				document.getElementById(id3).className='maintxtCommentIN';		
			}else{
				document.getElementById(id3).className='maintextTGOVOT';			
			}
			
			
			if (obj){
				document.getElementById(id5).className='maintextTGOVOT_bold';		
			}else{
				document.getElementById(id5).className='maintextTGOVOT';			
			}
			
			
		}	

function trimAll(sString) 
{
	while (sString.substring(0,1) == ' ')
	{
		sString = sString.substring(1, sString.length);
	}
	
	while (sString.substring(sString.length-1, sString.length) == ' ')
	{
		sString = sString.substring(0,sString.length-1);
	}
	
	return sString;
}

	function chk_search_frase()
	{
		frase = document.search_art_form.article_search.value;
		
			if ( trimAll(frase).length == 0)
				document.getElementById('errMsg').innerHTML="יש להכניס מילת חיפוש";
			else if ( trimAll(frase).length < 2)
				document.getElementById('errMsg').innerHTML="יש להכניס מילת חיפוש ארוכה יותר";
			else
				return true;
			
		return false;
	}


function scrollerObj(name,initH,initW,heightB,widthB,content,initBg,Bg,speed,initFl){

    //**data**//

    this.name=name;

    this.initH=initH;

    this.initW=initW;

    this.heightB=heightB;

    this.widthB=widthB;

    this.content=content;

    this.initBg=initBg;

    this.Bg=Bg;

    this.iniFl=initFl;

    this.speed=parseInt(speed);

    this.timer = name + "Timer";

    this.elem;





    //**methods**//

    this.getElement = getElement;

    this.createLayer=createLayer;

    this.scrollLayer = scrollLayer; 

    this.scrollLoop=scrollLoop;



    //**initiate methods**//

    this.createLayer();

    this.getElement();

    this.scrollLayer();

    }



    //**call this method to stop scrolling**//

    function scrollLoop(s){

    this.speed = s;

    }



    //**pretty obvious**//

    function scrollLayer(){

    if(parseInt(this.elem.style.top)>(this.elem.offsetHeight*(-1))){

        this.elem.style.top = parseInt(this.elem.style.top)-this.speed;


    }

    else {this.elem.style.top = this.initH;}

    }



    //**get the specific dom-expression**//

    function getElement(){

    if(document.getElementById){

        this.elem = document.getElementById(this.name);

        }

    else if (document.all){

    this.elem = document.all[name];

        }

    else if (document.layers){

    this.elem = document.layers[name];

        }

    }



    //**pretty obvious - if NS4 - please upgrade to a standard compliant browser**//

    function createLayer(){

    if( document.getElementById || document.all){

    document.write('<div id="layer'+this.name+'" style="position:relative;overflow:hidden;float:'+this.initFl+';background-color:#'+this.initBg+';border:0px solid black;width:'+this.initW+'px;height:'+this.initH+'px;" onMouseover="'+this.name+'.scrollLoop(0)" onMouseout="'+this.name+'.scrollLoop('+this.speed+')">');

    document.write('<div id="'+this.name+'" style="position:absolute;top:'+this.initH+'px;left:0px;border:0px solid black;width:'+this.widthB+'px;height:'+this.heightB+'px;background-color:#'+this.Bg+'">');

    document.write(this.content);

    document.write('<\/div><\/div>');}

    else if(document.layers){

        document.write('<ilayer name="'+this.name+'" width="'+this.widthB+'" height="'+this.heightB+'">'+this.content+'<\/ilayer>');

        return;

    }

    if(this.scrollLayer){

      this.timer = setInterval(this.name+'.scrollLayer()','90');

    }

}


function showLayer(layerName)
{
    if (document.getElementById) // Netscape 6 and IE 5+
    {
 var targetElement = document.getElementById(layerName);
 targetElement.style.display = 'block';
    }
}

function hideLayer(layerName)
{
    if (document.getElementById)
    {
 var targetElement = document.getElementById(layerName);
 targetElement.style.display = 'none';
    }
}



function validate_audition_code()
{
	var audition_code = $F("audition_code");
	if(audition_code == "")
	{
		alert("אנא הקלד את קוד האודישן");
	}
	else
	{
		window.location.href='artist.php?code='+audition_code;
	}
}

function user_register_to_model(div_id)
{

	var url = "/ajax.php?main=user_register_to_model";  
	new Ajax.Updater(div_id, url, {asynchronous:true});
}


function vote_to_model_of_the_month(selection_id,field_id)
{
	var field_id = $F(field_id);
	
	var url = "/ajax.php?main=select_model_of_the_month&selection_id="+selection_id+'&field_id='+field_id;  
	new Ajax.Updater("messages_div", url, {asynchronous:true});
}


var playSecId=new Array();
var playMono=new Array();
var prevLimit=new Array();

function inCashe(secId,limit)
{ 
	var inArrayId=-1;
	for (var i=0; i < playSecId.length; i++)
	{
		if (playSecId[i] == secId)
		{ 
			inArrayId=i;
			break;
	  }
  }
  if (inArrayId == -1)
  {
   playSecId[playSecId.length]=secId;
   return playSecId.length - 1;	
  }
  
  return inArrayId;
}

function saveInCashe(casheId,section_id)
{
	 if (playMono[casheId][prevLimit[casheId]] == null)
   playMono[casheId][prevLimit[casheId]]=document.getElementById(section_id).innerHTML;
}

function load_playbacks(section_id,limit)
{ 
	var casheId=inCashe(section_id,limit);
  
  if (playMono[casheId] == null) playMono[casheId]=new Array();
  
	if (playMono[casheId][limit] != null) 
	{
		document.getElementById(section_id).innerHTML=playMono[casheId][limit];
  }
	else
	{
	 if (prevLimit[casheId] != null) saveInCashe(casheId,section_id);	
	 var url = "/ajax.php?main=load_playbacks&section_id="+section_id+'&limit='+limit;  
	 new Ajax.Updater(section_id, url, {asynchronous:true});
 }
 prevLimit[casheId]=limit;                            
}

function order_playbacks(playback_id)
{
	if (eyal == '1') {
		open_dialog(playback_id);
	} else {
	var load = window.open('/download_file.php?service=playback&id='+playback_id,'','scrollbars=no,menubar=no,height=230,width=200,resizable=no,toolbar=no,location=no,status=no');	
	}
}

function send_artist_page_to_friend()
{
	var load = window.open('/production/send_artist_page_to_friend.php','','scrollbars=no,menubar=no,height=300,width=300,resizable=no,toolbar=no,location=no,status=no');
}

function order_monologue(monologue_id)
{
	var load = window.open('/download_file.php?service=monologue&id='+monologue_id,'','scrollbars=no,menubar=no,height=300,width=300,resizable=no,toolbar=no,location=no,status=no');
}

function ear_playbacks(playback_id)
{
	var url = "/ajax.php?main=ear_playback&playback_id="+playback_id;  
	new Ajax.Updater("ear_playback", url, {asynchronous:true});
}

function ajax_domain_check()
{
	
	domain_n = document.update_USER_details_form.domain.value;
  document.getElementById("domain_checkDiv").innerHTML="";	
  
	var url = "/ajax2.php?main=domain_check&domain_n="+  domain_n;  
	new Ajax.Updater("domain_checkDiv", url, {asynchronous:true});

	
}

function ear_monologue(monologue_id)
{
	var url = "/ajax.php?main=ear_monologue&monologue_id="+monologue_id;  
	new Ajax.Updater("ear_monologue", url, {asynchronous:true});
}

function load_videos(video_id)
{
	var url = "/ajax.php?main=video&video_id="+video_id;  
	new Ajax.Updater("video_area", url, {asynchronous:true});
}

function load_videos_castup(video_id)
{
	var url = "/ajax2.php?main=video_castup&video_id="+video_id;  
	new Ajax.Updater("video_area", url, {asynchronous:true});
}

function load_videos_mp3music(video_id,type_S)
{
	var url = "/ajax.php?main=video_mp3music&video_id="+video_id+"&type_S="+type_S;  
	new Ajax.Updater("video_area", url, {asynchronous:true});
}

function load_videos_Channel(video_id)
{
	var url = "/ajax.php?main=video_Channel&video_id="+video_id;  
	new Ajax.Updater("video_area", url, {asynchronous:true});
}

function search_faq(search_term,GtNwVrSp)
{
	var url = "/ajax.php?main=search_faq&search_term="+search_term+"&GtNwVrSp="+GtNwVrSp;  
	new Ajax.Updater("main_questions_div", url, {asynchronous:true});
}

function load_faq_questions(div_id,subject_id)
{
	var url = "/ajax.php?main=faq_questions&subject_id="+subject_id;  
	new Ajax.Updater("main_questions_div", url, {asynchronous:true});
}

function close_faq_questions(div_id)
{
		clearInterval(interval);
	  showLayer(div_id);
}

function load_faq_answers(div_id,question_id,subject_id)
{
	var url = "/ajax.php?main=faq_answers&question_id="+question_id+"&subject_id="+subject_id;  
	new Ajax.Updater(div_id, url, {asynchronous:true});
}

function close_faq_answers(div_id)
{
	var url = "/ajax.php?main=close_answers";  
	new Ajax.Updater(div_id, url, {asynchronous:true});
}


function ajax_choosen_artists(user_id)
{
	var url = "/ajax.php?main=choosen_artists&user_id="+user_id;
	new Ajax.Updater("choosen_artists_div", url, {asynchronous:true});
}




function ajax_artist_payment_formChoosen(types)
{
	var url = "/ajax2.php?main=ajax_artist_payment_formChoosen&types="+types;
	new Ajax.Updater("payment_formChoosen_div", url, {asynchronous:true});
}
function ajax_artist_payment_sendForm()
{
	if( document.sendForm.field_6.value == "" && document.sendForm.types.value != "1" )
	{
		alert("שדה תעודת זהות של המקבל התשלום חובה");
	}
	else
	{
		var url = "/ajax2.php?main=ajax_artist_payment_sendForm&field_1=" + document.sendForm.field_1.value + "&field_2=" + document.sendForm.field_2.value + "&field_3=" + document.sendForm.field_3.value + "&field_4=" + document.sendForm.field_4.value + "&field_5=" + document.sendForm.field_5.value + "&field_6=" + document.sendForm.field_6.value + "&field_7=" + document.sendForm.field_7.value + "&field_8=" + document.sendForm.field_8.value + "&types=" + document.sendForm.types.value;
		new Ajax.Updater("payment_formChoosen_div", url, {asynchronous:true});
	}
}


function GetModel(USDG)
{
	var url = "/ajax.php?main=GetModelDI_gall&USDG="+USDG;
	new Ajax.Updater("GetModelDI_gall", url, {asynchronous:true});
	
	var url = "/ajax.php?main=GetModel_details&USDG="+USDG;
	new Ajax.Updater("GetModel_details", url, {asynchronous:true});
}


function dir_resulet_get_images(user_id)
{
	var url = "/ajax.php?main=dir_resulet_get_images&user_id="+user_id;
	new Ajax.Updater("dir_resulet_get_images", url, {asynchronous:true});
	
	var url = "/ajax.php?main=dir_resulet_get_details&user_id="+user_id;
	new Ajax.Updater("dir_resulet_get_details", url, {asynchronous:true});
	
	var url = "/ajax.php?main=dir_resulet_get_video&user_id="+user_id;
	new Ajax.Updater("dir_resulet_get_video", url, {asynchronous:true});
}


function showAuditionsList(typeId , limitt)
{
	var url = "/ajax.php?main=showAuditionsList&typeId="+typeId+"&limit="+limitt;
	new Ajax.Updater("showAuditionsList_div", url, {asynchronous:true});
}


// ajax2
function createNewComment( rowID , TypeFrom , channelID )
{
	var url = "/ajax2.php?main=createNewComment&rowID="+rowID+"&TypeFrom="+TypeFrom+"&channelID="+channelID;
	new Ajax.Updater("createNewCommentDiv", url, {asynchronous:true});
}


/***** Register
** function that check the register form
**
*****/
function check_register_form()
{
	a9 = document.register_form.username.value;
	a10 = document.register_form.fpassword.value;
	a1 = document.register_form.fname.value;
	a2_1 = document.register_form.date_year.value;
	a2_2 = document.register_form.date_month.value;
	a2_3 = document.register_form.date_day.value;
	a3 = document.register_form.lname.value;
	a4 = document.register_form.new_area.value;
	a5_1 = document.register_form.mobile_code.value;
	a5_2 = document.register_form.mobile_num.value;
	a6 = document.register_form.city.value;
	a7 = document.register_form.gender.value;
	a8 = document.register_form.email.value;
	a99 = document.register_form.takanon.checked;
	
	if( a9 == "" )
	{
		alert("יש להזין שם משתמש");
		document.register_form.username.focus();
		return false;
	}
	
	if( a10 == "" )
	{
		alert("יש להזין סיסמה");
		document.register_form.fpassword.focus();
		return false;
	}
	
	if( a10.length < '8' )
	{
		alert("הסיסמה חייבת להיות מורכת מלפחות 8 תווים");
		document.register_form.fpassword.focus();
		return false;
	}
	
	if( a1 == "" )
	{
		alert("יש להזין שם פרטי");
		document.register_form.fname.focus();
		return false;
	}
	
	if( a2_1 == "" )
	{
		alert("יש להזין שנת תאריך לידה");
		document.register_form.date_year.focus();
		return false;
	}
	
	if( a2_2 == "" )
	{
		alert("יש להזין חודש תאריך לידה");
		document.register_form.date_month.focus();
		return false;
	}
	
	if( a2_3 == "" )
	{
		alert("יש להזין יום תאריך לידה");
		document.register_form.date_day.focus();
		return false;
	}
	
	if( a3 == "" )
	{
		alert("יש להזין שם משתמש");
		document.register_form.lname.focus();
		return false;
	}
	
	if( a4 == "" )
	{
		alert("יש להזין איזור בארץ");
		document.register_form.new_area.focus();
		return false;
	}
	
	if( a5_1 == "" )
	{
		alert("יש להזין קידומת נייד");
		document.register_form.mobile_code.focus();
		return false;
	}
	
	if( a5_2 == "" )
	{
		alert("יש להזין מספר נייד");
		document.register_form.mobile_num.focus();
		return false;
	}
	
	if( a5_2 != "" )
	{
			for (i = 0 ; i < a5_2.length ; i++)
			{
				if( a5_2.charAt(i) < '0' || a5_2.charAt(i) > '9' )
				{
					alert("מספר הטלפון הנייד חייב להיות מורכב ממספרים בלבד");
					document.register_form.mobile_num.focus();
					return false;
				}
			}
			
			if( a5_2.length < '7' )
			{
					alert("מספר הטלפון הנייד חייב להיות מורכב מ 7 מספרים");
					document.register_form.mobile_num.focus();
					return false;
			}
	}
	
	if( a6 == "" )
	{
		alert("יש להזין עיר מגורים");
		document.register_form.city.focus();
		return false;
	}
	
	if( a7 == "" )
	{
		alert("יש להזין מין");
		document.register_form.gender.focus();
		return false;
	}
	
	/*if( a8 == "" )
	{
		alert("יש להזין דוא\"ל");
		document.register_form.email.focus();
		return false;
	}*/
	
	if( a8 != "" )
		{
			if ( !(/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(register_form.email.value)) )
			{
				alert("כתובת הדוא\"ל שגויה, אנא נסו שנית")
				document.register_form.email.focus();
				return false;
			}
		}
	
	if( a99 != "1" )
	{
		alert("יש לקרוא את התקנון");
		return false;
	}
	

	register_form.submit();
}

function check_update_user_profile_form(){
	a1 = document.update_USER_details_form.password.value;
	if( a1 == "" ){
		alert("יש להזין סיסמה");
		document.update_USER_details_form.password.focus();
		return false;
	}
	
	if( a1.length < '8' ){
		alert("הסיסמה חייבת להיות מורכת מלפחות 8 תווים");
		document.update_USER_details_form.password.focus();
		return false;
	}
	img3 = document.update_USER_details_form.img3.value;
	img4 = document.update_USER_details_form.img4.value;
	img5 = document.update_USER_details_form.img5.value;
	img6 = document.update_USER_details_form.img6.value;
	img7 = document.update_USER_details_form.img7.value;
	
	if ((img3!="") && (!validateImageType (img3))){
		alert("ניתן להעלות תמונות מסוג JPEG,JPG,GIF בלבד");
		document.update_USER_details_form.img3.focus();
		return false;
	}
	if ((img4!="") && (!validateImageType (img4))){
		alert("ניתן להעלות תמונות מסוג JPEG,JPG,GIF בלבד");
		document.update_USER_details_form.img4.focus();
		return false;
	}
	
	if ((img5!="") && (!validateImageType (img5))){
		alert("ניתן להעלות תמונות מסוג JPEG,JPG,GIF בלבד");
		document.update_USER_details_form.img5.focus();
		return false;
	}
	if ((img6!="") && (!validateImageType (img6))){
		alert("ניתן להעלות תמונות מסוג JPEG,JPG,GIF בלבד");
		document.update_USER_details_form.img6.focus();
		return false;
	}
	if ((img7!="") && (!validateImageType (img7))){
		alert("ניתן להעלות תמונות מסוג JPEG,JPG,GIF בלבד");
		document.update_USER_details_form.img7.focus();
		return false;
	}
}


function  validateImageType(image)	{
	var extensions = new Array("jpg","jpeg","gif");
	// Alternative way to create the array
	var extensions = new Array();

	extensions[1] = "jpg";
	extensions[0] = "jpeg";
	extensions[2] = "gif";
	var image_file = image;
	var image_length = image.length;
	var pos = image_file.lastIndexOf('.') + 1;
	var ext = image_file.substring(pos, image_length);
	var final_ext = ext.toLowerCase();
	for (i = 0; i < extensions.length; i++){
	    if(extensions[i] == final_ext){
	    	return true;
	    }
	}
		return false;
	}


function check_register_form_mini()
{
	a1 = document.register_form.fname.value;
	a3 = document.register_form.lname.value;
	a5_1 = document.register_form.mobile_code.value;
	a5_2 = document.register_form.mobile_num.value;
	a8 = document.register_form.email.value;
	a99 = document.register_form.takanon.checked;
	
	if( a1 == "" )
	{
		alert("יש להזין שם פרטי");
		document.register_form.fname.focus();
		return false;
	}
	
	if( a3 == "" )
	{
		alert("יש להזין שם משפחה");
		document.register_form.lname.focus();
		return false;
	}
	
	if( a5_1 == "" )
	{
		alert("יש להזין קידומת נייד");
		document.register_form.mobile_code.focus();
		return false;
	}
	
	if( a5_2 == "" )
	{
		alert("יש להזין מספר נייד");
		document.register_form.mobile_num.focus();
		return false;
	}
	
	if( a5_2 != "" )
	{
			for (i = 0 ; i < a5_2.length ; i++)
			{
				if( a5_2.charAt(i) < '0' || a5_2.charAt(i) > '9' )
				{
					alert("מספר הטלפון הנייד חייב להיות מורכב ממספרים בלבד");
					document.register_form.mobile_num.focus();
					return false;
				}
			}
			
			if( a5_2.length < '7' )
			{
					alert("מספר הטלפון הנייד חייב להיות מורכב מ 7 מספרים");
					document.register_form.mobile_num.focus();
					return false;
			}
	}
		
	/*if( a8 == "" )
	{
		alert("יש להזין דוא\"ל");
		document.register_form.email.focus();
		return false;
	}*/
	
	if( a8 != "" )
		{
			if ( !(/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(register_form.email.value)) )
			{
				alert("כתובת הדוא\"ל שגויה, אנא נסו שנית")
				document.register_form.email.focus();
				return false;
			}
		}
	
	if( a99 != "1" )
	{
		alert("יש לקרוא את התקנון");
		return false;
	}
	

	register_form.submit();
}



function ietruebody()
{
return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}

function ddrivetip(thetext, thecolor, thewidth){
if (ns6||ie){
if (typeof thewidth!="undefined") tipobj.style.width=thewidth+"px"
if (typeof thecolor!="undefined" && thecolor!="") tipobj.style.backgroundColor=thecolor
tipobj.innerHTML=thetext
enabletip=true
return false
}
}

function positiontip(e){
if (enabletip){
var curX=(ns6)?e.pageX : event.clientX+ietruebody().scrollLeft;
var curY=(ns6)?e.pageY : event.clientY+ietruebody().scrollTop;
//Find out how close the mouse is to the corner of the window
var rightedge=ie&&!window.opera? ietruebody().clientWidth-event.clientX-offsetxpoint : window.innerWidth-e.clientX-offsetxpoint-20
var bottomedge=ie&&!window.opera? ietruebody().clientHeight-event.clientY-offsetypoint : window.innerHeight-e.clientY-offsetypoint-20

var leftedge=(offsetxpoint<0)? offsetxpoint*(-1) : -1000

//if the horizontal distance isn't enough to accomodate the width of the context menu
if (rightedge<tipobj.offsetWidth)
//move the horizontal position of the menu to the left by it's width
tipobj.style.left=ie? ietruebody().scrollLeft+event.clientX-tipobj.offsetWidth+"px" : window.pageXOffset+e.clientX-tipobj.offsetWidth+"px"
else if (curX<leftedge)
tipobj.style.left="5px"
else
//position the horizontal position of the menu where the mouse is positioned
tipobj.style.left=curX+offsetxpoint+"px"

//same concept with the vertical position
if (bottomedge<tipobj.offsetHeight)
tipobj.style.top=ie? ietruebody().scrollTop+event.clientY-tipobj.offsetHeight-offsetypoint+"px" : window.pageYOffset+e.clientY-tipobj.offsetHeight-offsetypoint+"px"
else
tipobj.style.top=curY+offsetypoint+"px"
tipobj.style.visibility="visible"
}
}

function hideddrivetip(){
if (ns6||ie){
enabletip=false
tipobj.style.visibility="hidden"
tipobj.style.left="0px"
tipobj.style.backgroundColor=''
tipobj.style.width=''
}
}

	function disableCtrlKey(e)
	{    //alert('לחץ להמשך');
        //list all CTRL + key combinations you want to disable
        var forbiddenKeys = new Array('a', 'n', 'c', 'x', 'v', 'j');
        var key;
        var isCtrl;

        if(window.event){
                key = window.event.keyCode;     //IE
                if(window.event.ctrlKey)
                        isCtrl = true;
                else
                        isCtrl = false;
        }
        else{
                key = e.which;     //firefox
                if(e.ctrlKey)
                        isCtrl = true;
                else
                        isCtrl = false;
        }
        //if ctrl is pressed check if other key is in forbidenKeys array
        if(isCtrl){
                for(i=0;i<forbiddenKeys.length;i++){
                        //case-insensitive comparation
                        if(forbiddenKeys[i].toLowerCase()==String.fromCharCode(key).toLowerCase()){
                                //alert('Key combination CTRL + '+String.fromCharCode(key)+' has been disabled.');
								alert('במרום השקיעה מאמצים רבים לספק את התוכן המבוקש\n\n העתקה מעמוד זה חסומה');
                                return false;
                        }
                }
        }
        return true;
	}
