var ids=new Array('a1','a2','a3','test');

function switchid(id){	
	hideallids();
	showdiv(id);
}

function hideallids(){
	//skrivanje svih elemenata
	for (var i=0;i<ids.length;i++){
		hidediv(ids[i]);
	}		  
}

function hidediv(id) {
	//skrivanje pojedinacnog elementa na osnovu id
	if (document.getElementById) { // DOM3 = IE5, NS6
		document.getElementById(id).style.display = 'none';
	}
	else {
		if (document.layers) { // Netscape 4
			document.id.display = 'none';
		}
		else { // IE 4
			document.all.id.style.display = 'none';
		}
	}
}

function showdiv(id) {
	//prikaz pojedinacnog elementa na osnovu id
		  
	if (document.getElementById) { // DOM3 = IE5, NS6
		document.getElementById(id).style.display = 'block';
	}
	else {
		if (document.layers) { // Netscape 4
			document.id.display = 'block';
		}
		else { // IE 4
			document.all.id.style.display = 'block';
		}
	}
}

//Validacija forme 

function Validacija(Form) 
{
function Dugmici(Grupa)
   {
   for(i=0; i < Grupa.length; i++)
   {
   if(Grupa[i].checked)
   return(true);
   }
   return(false);
   }
/*------------------------------------------------*/

if(Form.url.value=="")
{
alert("Niste uneli URL sajta");
Form.url.focus();
return(false);
}

if(!Dugmici(Form.check0))
{
alert("Niste odabrali SEO uslugu");
return(false);
}

if(Form.email.value=="")
{
alert("Niste uneli e-mail");
Form.email.focus();
return(false);
}


return(true);
}




