var saveColor='';

function switchIn(element){
  saveBgColor=element.style.backgroundColor;
  saveColor=element.style.color;
  element.style.backgroundColor='#A72600';
  element.style.cursor='pointer';
}

function switchOut(element){
  element.style.backgroundColor=saveBgColor;
}

function mclick(str){
 // url='http://3y.billes.dk/?page='+str;
  window.location.search='page='+str;
}

function showImg(imgid){
  url='http://3y.billes.dk/showimg.php?imgid='+imgid;
  window.open(url,'imgwindow','width=750,height=600, toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,copyhistory=no');
}

