SET_id = "";

//Visar palett
function openPalett(id){
	
	//Ifall det inte finns ett satt id
	if(id == ""){
		id = SET_id;
	}
	else{
		SET_id = id;
	}
	id = SET_id;
	
	//Hämtar absolut vänster-position för aktuellt lager
	xPos = document.getElementById('id_'+id).offsetLeft;
	tempEl = document.getElementById('id_'+id).offsetParent;
	while (tempEl != null) {
		xPos += tempEl.offsetLeft;
		tempEl = tempEl.offsetParent;
	}
	
	//Hämtar absolut topp-position för aktuellt lager
	yPos = document.getElementById('id_'+id).offsetTop;
	tempEl = document.getElementById('id_'+id).offsetParent;
	while (tempEl != null) {
		yPos += tempEl.offsetTop;
		tempEl = tempEl.offsetParent;
	}
	
	//Justerar dropdown-lagrets position (i förhållande till länken)
	yPos = yPos-250+"px";
	xPos = xPos+22+"px";
	
	//Bestämmer dropdown-lagrets position
	document.getElementById("fargpalett").style.left = xPos;
	document.getElementById("fargpalett").style.top = yPos;
	
	//Visar palett
	document.getElementById("fargpalett").style.display = "block";
	
	//Visar annan pil
	document.getElementById("id_"+SET_id).style.opacity = "0";//FF
	document.getElementById("id_"+SET_id).style.filter='alpha(opacity=0)';//IE
	
}

//Döljer palett
function closePalett(){
	document.getElementById('fargpalett').style.display = "none";
	
	//Visar orginal pil
	document.getElementById("id_"+SET_id).style.opacity = "1";//FF
	document.getElementById("id_"+SET_id).style.filter='alpha(opacity=100)';//IE
}

//Väljer färg
function selectColor(color){
	document.getElementById('field_'+SET_id).blur();
	document.getElementById('field_'+SET_id).value = color;
	document.getElementById('field_'+SET_id).focus();
}