<?php
$this->layout()->setLayout('oapopup');
$this->placeholder("itemDiv")->set('<h3>' . $this->title . '</h3>');
$this->placeholder("buttons")->set(
    '<input type="button" value="Submit" id="submitbtn" onclick="savetracklyrics();">'
    . '<input type="button" value="Cancel" onclick="closePopUp();">'
);
?>
<script type="text/javascript" src="/scripts/tracklyrics.js"></script>
<div class="alertError" id="err_msg" style="display: none"></div>
<div class="alertConfirm" id="success_msg" style="display: none"></div>
<form id="form" name="saveTrackLyrics" action="" method="post">
    <table class="form full">
        <tr>
            <td>
                <textarea class="textarea" id="lyrics" name="lyrics" class="large"><?php echo $this->trackLyrics['lyrics']; ?></textarea>
                <input type="hidden" id="track_id" name="track_id" value="<?php echo $this->trackLyrics['track_id']; ?>">
            </td>
        </tr>
    </table>
</form>
