// Tim Peters JS Library

function MovieWindow(theMovie) {
 if (!theMovie) {
  theMovie="GM.HTML";
 }
	Movie_window = window.open(theMovie,"MovieW","width=780,height=440");
	Movie_window.focus();
	Movie_window.camefrom = self; 
 return false;
}
