You have an echo nested in an echo...
It should be
<?php
if ($row_DetailRS1['isVideo'] == 1)
{
echo '<div id="video_player"></div>';
}
else
{
echo '<div class="large-img">
<img src="images/portfolio/'.$row_DetailRS1["image-lg"].'" width="936" alt="" />
</div>';
}
?>