// JavaScript Document

function changeColor(color, ID) {
	document.getElementById(ID).bgColor = "#" + color;
}
function showHide(elementID,firstpic,lastpic,option) {
/*
Criteria fyri at skifta mynd, er bara at navnið er 8 bókstavir til longdar! (td. "show.gif")
Option: tað er antin "show" ella "hide", alt eftir hvat ið func. skal gera. (td. "showHide(AdminBox,show.gif,hide.gif,show)" )
*/

	var tmp = document.getElementById(elementID).style.display;

	if ((tmp == 'none' || option == 'show' || option == 'block') && option != 'hide') {
		document.getElementById(elementID).style.display = "block";
	} else {
		//eval('document.all.'+elementID+'.style.display="none";');
		document.getElementById(elementID).style.display = "none";
	}

	if(firstpic && lastpic) {
	var tmp = eval('document.images.'+elementID+'pic.src.length') - 8;
	if (eval('document.images.'+elementID+'pic.src.substr('+tmp+') != "'+firstpic+'"')) { eval('document.images.'+elementID+'pic.src="img/'+firstpic+'"'); } 
	else { eval('document.images.'+elementID+'pic.src="img/'+lastpic+'"'); } 
	}
}
