function getMore(imgid,img,state){
	document.getElementById('more' + imgid).src = '_layout/b'+ img + state +'.gif' ;
}
function showMovie(movie,txt,fps){
	
	mw = 400;
	mh = 390;
     	ml = (screen.width - mw) / 2;
     	mt = (screen.height - mh) / 2;

	play = "movie.php?movie=" + movie + "&txt=" + txt + "&fps=" + fps;
	win = "top=" + mt + ", left=" + ml + ", toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=" + mw + ",height=" + mh; 

	dvs = window.open(play, "DVSPopUp", win);
	dvs.focus();

}
