////////////// POP MOVIE ///////////////

function popMovie(whichMOV) {
	w = 640;
	h = 385;
	l = ((screen.width-w)/2);
	t = ((screen.height-h)/2.5);
	mov = 'whitewedding';
	movURL = '/project/whitewedding/movies/'+whichMOV+'';
	arg = 'width='+w+',height='+h+',left='+l+',top='+t+',scrollbars=no,resize=no';
	moviepopup = window.open(movURL, mov, arg);
	moviepopup.focus();	
}


