function wo(pth,w,h)
{
var huhly;
huhly=window.open('/pic.php?pic=' + pth + '','','toolbars=0,location=0,status=0,menubar=0,scrollbars=0,resizable=0,width=' + w + ',height=' + h );
huhly.focus()
}

function swapImage(id,src){
 var img;
 img=document.getElementById(id);
 img.src='/images/'+src;
 return false;
}


function hideTags(tag,cls){
  var items=this.document.getElementsByTagName(tag)
  for(var i=0;i < items.length;i++){
    if(items[i].className == cls){
     items[i].style.display = "none";
    }
  }
}

function showID(id){
 if(this.document.getElementById(id))		this.document.getElementById(id).style.display="block";
 if(this.document.getElementById(id+'Link'))	this.document.getElementById(id+'Link').className='selected';
}

function hideID(id){
 if(this.document.getElementById(id))		this.document.getElementById(id).style.display="none";
 if(this.document.getElementById(id+'Link'))	this.document.getElementById(id+'Link').className='';
}

function showBox(id){
// hideID('desc');
 hideID('movieShots');
 hideID('similar');
 hideID('features');
 hideID('trailer');
 showID(id);
 return false;
}
