
function playMovie (speed, movie_id) {
	playMoviePlayer(speed, movie_id, "real");
}

function playMoviePlayer (speed, movie_id, player) {
	//window.open("/cgi-bin/play_window.mfp?speed="+speed+"&movie_id="+movie_id+"&player="+player,"movie_window","toolbar=no,width=340,height=415,directories=no,status=no,scrollbars=auto,resizable=no,menubar=no");
	//window.open("/cgi-bin/play_window.mfp?speed="+speed+"&movie_id="+movie_id+"&player="+player,"movie_window","toolbar=no,width=340,height=415,directories=no,status=no,scrollbars=auto,resizable=no,menubar=no");
//	alert(speed);		slow
//	alert(movie_id);	4
//	alert(player);		wmw
	if (player == "wmv") {
		ext = "asx";
	} else {
		ext = "ram";
	}
	//theURL = "./movie_player/movie.mfp/speed="+speed+"/movie_id="+movie_id+"/player=c:/zindaggirocks01.rm?speed="+speed+"&id="+movie_id+"&player="+player;
	//alert (theURL);

	theURL = "./cgi-bin/special/playmovie.php?speed="+speed+"&movie_id="+movie_id+"&player="+player+"&ext="+ext;
//	theURL = "playmovie.php";
	//location.href = theURL;
	if(speed=="slow" ){
		my_window = window.open(theURL,"the", "left=170,top=0,bottom=0,width=260,height=260,directories=0,status=0,menuBar=0,scrollBars=0,resizable=1");
	}
	else{
		my_window = window.open(theURL,"the", "left=170,top=0,bottom=0,width=400,height=400,directories=0,status=0,menuBar=0,scrollBars=0,resizable=1");
	}
}

function playMacMovie (speed, movie_id) {
	//window.open("/cgi-bin/play_window.mfp?mac=1&speed="+speed+"&movie_id="+movie_id,"movie_window","toolbar=no,width=340,height=415,directories=no,status=no,scrollbars=auto,resizable=no,menubar=no");
	playMoviePlayer(speed, movie_id, "real");
}

