// Used by buttons function!
function setHeadValues(headid, headFile, headPosX, headPosY, headScale, pictid, pictFile) {
	
  stopAnimation();
  document.applets['FacePlayer'].stopAnimation();
  igyFileName = "http://" + location.hostname + headFile;
  document.applets['FacePlayer'].setHeadWithPos(headid, igyFileName, headPosX, headPosY, headScale);
  document.applets['FacePlayer'].setBgPicture(pictid, 
	"http://" + location.hostname + pictFile, 0, 0);
  replay();
  
  pageId = document.getElementById("pageid").value;
  cookieValue = headid+'|'+headFile+'|'+headPosX+'|'+headPosY+'|'+headScale+'|'+pictid+'|'+pictFile;
  days = 2;
  name = 'headinfo'+pageId;
  setCookie(name, cookieValue, days);
  
  document.getElementById('headid').value = headid;
  document.getElementById('pictid').value = pictid;
}
