function VideoPlayer_DoFSCommand(command, args)
{
	if(command == "maximize")
	{
		//alert("maximize " + args);
		doMaximize(args);
	}
}

function doMaximize(id)
{
	var winX = 0;
	var winY = 0;
	var w = window.open('../flash/videoplayer.php?id='+id, 'VideoPlayer', "width=" + screen.width + ",height=" + screen.height + 
		",location=0,menubar=0,scrollbars=0,toolbar=0,status=0,resizable=1,left=" + winX + ",top=" + winY);
	w.focus();
}

function makeLine(str) {
	return str + "\n";
}

