/* Email validation 
------------------------------------------------------------------ */
function checkform(){
    var phone=false;
      var reMail = /^[A-Za-z0-9_.-]+@[A-Za-z0-9_.-]+\.[A-Za-z]{2,3}$/;
      if (document.contform.firstN.value == '') {
        document.contform.firstN.focus();
        alert("Please Type Your First Name !");
        return(false);
      }
      if (document.contform.lastN.value == '') {
        alert("Please Type Your Last Name !");
        document.contform.lastN.focus();
        return(false);
      }
      if ((document.contform.email.value == '') || !reMail.exec(document.contform.email.value)) 	{
        alert("Моля въведете валиден емайл адрес!");
        document.contform.email.focus();
        return(false);
      }
      return(document.contform.submit());
    }

/* Show/Hide 
------------------------------------------------------------------ */
function showHide(ele, ele1, ele2){
var x, y, z;
if ( document.getElementById
&& (x = document.getElementById(ele))
&& x.style )
{
x.style.display = ('none' == x.style.display)? '' : 'none' ;
}
if ( document.getElementById
&& (y = document.getElementById(ele1))
&& y.style )
{
y.style.display = ('none' == y.style.display)? '' : 'none' ;
}
if ( document.getElementById
&& (z = document.getElementById(ele2))
&& z.style )
{
z.style.display = ('none' == z.style.display)? '' : 'none' ;
}
}

function checkform(){
    var phone=false;
      var reMail = /^[A-Za-z0-9_.-]+@[A-Za-z0-9_.-]+\.[A-Za-z]{2,3}$/;
      if (document.contform.name.value == '') {
        document.contform.name.focus();
        alert("Моля въведете Вашето име!");
        return(false);
      }
      if ((document.contform.email.value == '') || !reMail.exec(document.contform.email.value)) 	{
       alert("Моля въведете валиден емайл адрес!");
        document.contform.email.focus();
        return(false);
      }
     
      if (document.contform.msg.value == '') {
        document.contform.msg.focus();
        alert("Моля въведете Вашето съобщение!");
        return(false);
      }
      return(true);
    }

	
	
//**************************************************************************

function show(nr)
{
	var va = '1,2,3';
	var array = va.split(',');
	for (var i in array) {
		var id = array[i];
		var Name = document.getElementById('content_' + id);
		var button = document.getElementById('blue_' + id);
		if(Name!=null){
		if(nr == id){
			Name.style.display = 'block';
			button.className = 'on';
		
		}
		else {
			Name.style.display = 'none';
			button.className = '';
		 }
		}
	}
}
