var unloadhelper = false;
var menuArray = new Array('news', 'cytaty', 'cytatyU', 'przyslowia', 'sentencje', 'panel');

function ShowPage(pageName, linkName){
    objPage = document.getElementById(pageName);
    link = document.getElementById(linkName);
    if(objPage.style.display=='block'){
    		 objPage.style.display='none';
    		 link.style.background= '#8bc810';
    		 link.style.borderLeftColor = '#633812';
    }
    else{
	 		  if(contain(pageName)){    	    
	    		  for(var menuElement in menuArray){ 	   		  
	    		  			 document.getElementById(menuArray[menuElement]).style.display='none';
	    		  			 document.getElementById('l'+menuArray[menuElement]).style.background= '#8bc810';
	    		  			 document.getElementById('l'+menuArray[menuElement]).style.borderLeftColor = '#199a1b';
				  }
			  }	   
    		  objPage.style.display='block';
    		  link.style.background = '#669933';
    		  link.style.borderLeftColor = 'red';
    }
   
}

function contain(name){
	for(var elem in menuArray){
		if(menuArray[elem]==name) return true;
	}
	return false
}

function saveMenu()
{	
  if(unloadhelper == false) {
    var tmp="";
	for(var menuElement in menuArray){	
		if(document.getElementById('l'+menuElement).style.background == '#669933')
				tmp = tmp + menuElement + "=1&";	
		else tmp = tmp + menuElement + "=0&";	 
	}
	self.name=tmp;
	//self.name="news=1&cytaty=0&cytatyU=1&przyslowia=0&sentencje=0&";
    window.alert(tmp);
	 unloadhelper = true;
  }
}


function goToLink(link, kat, pod){
	self.name="g=" + kat + "&p=" +pod;
	location.href= 'http://'+document.location.hostname +link;
}

function Menu(){
	if(!self.name) self.name="g=news&p=none";
	var mark1 = self.name.indexOf("=");
   var mark2 = self.name.indexOf("&");
   var glowna = self.name.substr(mark1+1, mark2-2);
   var pod = self.name.substr(mark2+3, self.name.length);
   document.getElementById('l'+glowna).style.background = '#669933';
   document.getElementById('l'+glowna).style.borderLeftColor = 'red';
   document.getElementById(glowna).style.display='block';
   if(pod!='none'){
   	document.getElementById(pod).style.background = '#72bc27';
	}
}


/*function Menu(){
	if(self.name.lastIndexOf('&')==-1)	self.name="news=1&cytaty=0&cytatyU=0&przyslowia=0&sentencje=0&";
	while(self.name.length > 0 ){
	    var mark1 = self.name.indexOf("=");
	    var mark2 = self.name.indexOf("&");
	    var menuItemName = self.name.substr(0, mark1);
	    
	    menuArray[menuItemName] = self.name.substring(mark1 + 1, mark2);
	    self.name = self.name.substr(mark2 + 1, self.name.length);
	    document.write('<br />'+self.name);
   }
   for(var menuElement in menuArray){
   	document.write(menuElement+'<br />');   
		if(menuArray[menuElement]==1){		
    		  document.getElementById('l'+menuElement).style.background = '#669933';
    		  document.getElementById('l'+menuElement).style.borderLeftColor = 'red';
    		  document.getElementById(menuElement).style.display='block';
		} 
		else{
			document.getElementById('l'+menuElement).background= '#8bc810';
		    document.getElementById('l'+menuElement).style.borderLeftColor = '#633812';
		    document.getElementById(menuElement).style.display='none';
		} 
	}
}
*/


  

/*
function MenageElements(){
	
}*/


function FocusField(me){
	me.id='focusInput';
}

function NormalField(me){
	me.id='normalInput';
}

function LoginField(me){
	me.value='';
	me.id='focusInput';
}

function PasswordField(me){
	me.value='';
	me.id='focusInput';
}

