﻿// JavaScript Document

function Trim(str)
{
   return str.replace(/^\s\s*/, '').replace(/\s\s*$/, '');
}

function clearSearchText()
{   
   var txt = document.getElementById('plc_lt_zoneSearchBox_cmssearchbox_txtWord');
   var arbsearch = 'بحث' ;
   if ((txt.value=='Search') || (txt.value == arbsearch ) )
	   {
		   txt.value = '';
		   txt.style.color = '#000000';
	   }
	else
	{
	   txt.style.color = '#000000';
	}	   
} 

function clearEmailText()
{   
   
   var msg = document.getElementById('plc_lt_zonenewsLetter_NewsletterSubscription_lblError');
   if (msg!= null)
      msg.style.display='none';
   var txt = document.getElementById('plc_lt_zonenewsLetter_NewsletterSubscription_txtEmail');
   if (txt.value=='Enter your email')
	   {
		   txt.value = '';
		   txt.style.color = '#000000';
	   }
    else
	{
	   txt.style.color = '#000000';
	}
} 


