function dsp(loc){
   if(document.getElementById){
      var foc=loc.firstChild;
      foc=loc.firstChild.innerHTML?
         loc.firstChild:
         loc.firstChild.nextSibling;
      foc=loc.parentNode.nextSibling.style?
         loc.parentNode.nextSibling:
         loc.parentNode.nextSibling.nextSibling;
      foc.style.display=foc.style.display=='block'?'none':'block';}} 

function switch_img(imgname,status,dir){
	document.images[imgname].src=dir+"images/"+imgname+status+".jpg";
}

function switch_bigimg(imgname,dir){
	document.images['bigimg'].src=dir+"images/user_img/"+imgname+".jpg";
}

//My favourites
function ChecklistDel(el_val){
window.open('check_del.php?el='+el_val,'checklist','WIDTH=300,HEIGHT=300,scrollbars=yes,resize=yes,left=150,top=100,screenX=150,screenY=100');
}

function ChecklistAdd(el_val,s_url){
window.open('check_add.php?el='+el_val,'checklist','WIDTH=300,HEIGHT=300,scrollbars=yes,resize=yes,left=150,top=100,screenX=150,screenY=100');
}

function Checklist(element) {
 if (document.images) {
	if (element.type == "checkbox") {
	if (element.checked) 
	ChecklistAdd(element.value);
	else
	ChecklistDel(element.value);

  }
 }
}
//-------------------