function clean(id, word)
{
	$('#'+id).focus(function(){
		if ($(this).val() == word)
			{
				$(this).val('');
			}
	});

	$('#'+id).blur(function(){
		if ($(this).val() == '')
			{
				$(this).val(word);
			}
	});
}

function printMail()
{
	var address = 'info';
	var domen = 'raexpertkz';
	var zone = 'kz';
	document.write('<a href="mailto:'+address+'@'+domen+'.'+zone+'" id="sendmail"><img src="/img/icons/mail.gif" alt="Написать письмо" title="Написать письмо"></a>');
}

function addBookmark()
{
	url = location.href;
	title = document.title;
	 
  if ((typeof window.sidebar == "object") && (typeof window.sidebar.addPanel == "function")) window.sidebar.addPanel (title, url, "");
  else if (typeof window.external == "object") window.external.AddFavorite(url, title);
  else if (window.opera && document.createElement)
  {
    var a = document.createElement('A');
    if (!a) return false; //IF Opera 6
    a.setAttribute('rel','sidebar');
    a.setAttribute('href',url);
    a.setAttribute('title',title);
    a.click();
  }
  else return false;
}
