function flipBox( movieID )
{
	baseDir = "/_media/dvds/";
	obj = document.getElementById('box_'+movieID);
	curSrc = document.getElementById('box_'+movieID).src;
	if( curSrc.indexOf('_b.jpg') != -1 ) 
		suffix = '_bb.jpg';
	else
		suffix = '_b.jpg';
	
	obj.src = baseDir + movieID + suffix;
}

function enlargeDVD( movieID )
{
	var width = 440;
	var height = 660;
	var xVal = parseInt((screen.availWidth/2) - (width/2));
	var yVal = parseInt((screen.availHeight/2) - (height/2));
	window.open('/enlarge.php?movie='+movieID+'','','width='+width+',height='+height+',left='+xVal+',top='+yVal+',screenX='+xVal+',screenY='+yVal+'')
}

function enlargeStar( starID )
{
	var width = 420;
	var height = 660;
	var xVal = parseInt((screen.availWidth/2) - (width/2));
	var yVal = parseInt((screen.availHeight/2) - (height/2));
	window.open('/enlarge.php?star='+starID+'','','width='+width+',height='+height+',left='+xVal+',top='+yVal+',screenX='+xVal+',screenY='+yVal+'')
}
