function newWindow(whichMovie) {
// this function opens a new browser window for each video clip


// specify window parameters
	movieWindow = window.open("","",'resizable=no,scrollbars=no,menubar=no,toolbar=no,status=no,height=254,width=320,left=400,screenX=400,top=140,screenY=140');

// write HTML to new window
	movieWindow.document.write('<HTML><HEAD><TITLE>Shinto</TITLE></HEAD>');
	movieWindow.document.write('<BODY bgcolor="#FFFFFF" leftmargin=0 marginwidth=0 topmargin=0 marginheight=0>');

// movieWindow.document.write('<CENTER><ALIGN=TOP>');
	movieWindow.document.write('<EMBED SRC="' + whichMovie + '" width="320" height="256" autoplay="true" bgcolor="white" volume="100">');
	movieWindow.document.write('</BODY></HTML>');
	movieWindow.document.close();

// bring the new window to the front
	movieWindow.focus();
}
