/* 
############################################################
# -------------------------------------------------------- #
# SOUDADO.COM © Todos os direitos reservados               #
# -------------------------------------------------------- #
############################################################
*/

function abrirDepo(id)
{
	document.getElementById("depo"+id).style.position = "relative";
	document.getElementById("depo"+id).style.top = "0";
	document.getElementById("depo"+id).style.left = "0";

	document.getElementById('headerDEPO'+id).onclick=function(){ fecharDepo(id); return false; }
}

function fecharDepo(id)
{
	document.getElementById('depo' + id).style.position = 'absolute';
	document.getElementById('depo' + id).style.top = '-15000px';
	document.getElementById('depo' + id).style.left = '-15000px';
	
	document.getElementById('headerDEPO'+id).onclick=function(){ abrirDepo(id); return false; }
}


function move_star(centerid,id,acao)
{
	// Zera todos
	for(x=1;x<=5;x++) document.getElementById('star'+centerid+x).style.backgroundPosition='bottom right';
	
	switch(acao)
	{
		case 1:
			for(x=1;x<=id;x++) document.getElementById('star'+centerid+x).style.backgroundPosition='top';				
		break;
		
		case 0:
			
			x=document.getElementById("starinfo_"+centerid).value;
			for(xx=1;xx<=x;xx++) document.getElementById('star'+centerid+xx).style.backgroundPosition='top right';
		break;
		
		case 2:
		
			for(x=1;x<=id;x++) document.getElementById('star'+centerid+x).style.backgroundPosition='top';
			document.getElementById("starinfo_"+centerid).value = id;
		break;
		
	}
	
}
