	var DHTML = (document.getElementById || document.all || document.layers);
	
	function getObj(name)
	{
	  if (document.getElementById)
	  {
	  	this.obj = document.getElementById(name);
		this.style = document.getElementById(name).style;
	  }
	  else if (document.all)
	  {
		this.obj = document.all[name];
		this.style = document.all[name].style;
	  }
	  else if (document.layers)
	  {
	   	this.obj = document.layers[name];
	   	this.style = document.layers[name];
	  }
	}

/* - - - - - change stars on rate-box - - - - -  */
	
	function bgflip(move)
	{
		if (!DHTML) return;
		var x = new getObj('stars');
		x.style.backgroundPosition = "0 "+move+"px";
	}
	
/* - - - - - show tooltips on registration-form - - - - -  */

	function tip_show(target, dspl)
	{
		if (!DHTML) return;
		var x = new getObj(target);
		x.style.display = dspl;
	}
	
/* - - - - - highlight answer at FAQs - - - - -  */
	
	d = document;

	function faq(target)
	{
		col = d.getElementById('centercolumn');
		ps 	= col.getElementsByTagName('p');
		for(a=0;a<ps.length;a++){
			ps[a].style.background = 'transparent';
		}
		obj = d.getElementById(target);
		obj.style.color = '#333';
		obj.style.background = '#ffd6e0';
		obj.style.padding = '5px';
	} 
	
/* - - - - - toggle songs lyrics - - - - -  */ 

	function lyrics_toggle(target1, dspl1, target2, dspl2, target3, dspl3)
	{
		if (!DHTML) return;
		var x = new getObj(target1);
		x.style.display = dspl1;
		var y = new getObj(target2);
		y.style.display = dspl2;
		var z = new getObj(target3);
		z.style.display = dspl3;
	}
	
/* - - - - - toggle send a friend form - - - - -  */ 

 	function saf_toggle(target1, dspl1, target2, dspl2, target3, dspl3)
	{
		if (!DHTML) return;
		var x = new getObj(target1);
		x.style.display = dspl1;
		var y = new getObj(target2);
		y.style.display = dspl2;
		var z = new getObj(target3);
		z.style.display = dspl3;		 
	} 
	
/* - - - - - toggle help for registration - - - - -  */ 

	function help_toggle(target1, dspl1, target2, dspl2)
	{
		if (!DHTML) return;
		var x = new getObj(target1);
		x.style.display = dspl1;
		var y = new getObj(target2);
		y.style.display = dspl2;	 
	}
