function chgimg(name,path){
  document.images[name].src = path;
}
function $(tagId){
  if(document.getElementById){
    return document.getElementById(tagId);
  }else
  if(document.all){
    return document.all(tagId);
  }else{
    return tagId;
  }
}
function callAs(frameName){
  $("diceFlash").swfJump(frameName);
}