var capsule_auto;
var capsule_manual;

function capsule_autoplay(video) {
	var params;
	var x;
	var y;
	var w;
	var h;

	w = 254;
	h = 348;

	x = (screen.width - w) / 2;
	y = (screen.height - h) / 2;

	params  = "left=" + x;
	params += ",top=" + y;
	params += ",width=" + w;
	params += ",height=" + h;

	//capsule_auto = window.open("capsule.php?video="+video, "capsule_auto", params);
	//capsule_auto.focus();
}

function capsule_autostop() {
	if (capsule_auto.document) {
		capsule_auto.close();
	}
}

function capsule_play(video) {
	var params;
	var x;
	var y;
	var w;
	var h;

	w = 254;
	h = 348;

	x = (screen.width - w) / 2;
	y = (screen.height - h) / 2;

	params  = "left=" + x;
	params += ",top=" + y;
	params += ",width=" + w;
	params += ",height=" + h;

	capsule_manual = window.open("capsule.php?video="+video, "capsule_manual", params);
	capsule_manual.focus();
}