﻿// JScript File

function AddHeader(flashdir)
{
    document.write('<form id="form1" runat="server">');
    document.write('<div>');
    document.write('<br />');
    document.write('<table style="width: 785px; background-color: green" >');
    document.write('<tr>');
    document.write('<td align="center" valign="top">');
    document.write('<DIV id=mainMenu>');
    document.write('    <DIV class=flashMsg>Please ensure that JavaScript is enabled and that the Flash plug-in version 6 or above is installed.');
    document.write('    </DIV>');
    document.write('</DIV>');
    
    document.write('<script type="text/javascript">');

    var str =   'var fo = new FlashObject("' + flashdir + '/mainmenuasp.swf?BaseUrl=/&currentTab=' + document.title + '", "mainMenu", "785", "60", 6, "#FFFFFF");';     
    document.write(str);
    document.write('fo.addVariable("uid", "125");');
    document.write('fo.addVariable("sitepath", "");');
    document.write('fo.addVariable("");');
    document.write('fo.write("mainMenu");');
    
    
    document.write('</script>');
    document.write('</td>');
    document.write('</tr>');
    document.write('</table>');
    document.write('</div>');
    document.write('</form>');  
}
function AddFooter()
{
    document.write('<table style="width: 785px; background-color: green">');
    document.write('    <tr>');
    document.write('        <td style="width: 10px; height: 21px; text-align: justify">');
    document.write('            <span style="font-family: Arial"><strong><span style="font-size: 8pt"><span style="color: #ffffff">');
    document.write('            </span><span style="color: #ffffff; direction: ltr; text-align: center"></span></span>');
    document.write('            </strong></span>');
    document.write('        </td>');
    document.write('        <td style="width: 765px; height: 21px; font-family: Times New Roman; font-size: 8pt; color: #ffffff;"">');
    document.write('            <strong>Copyright © 2007 Silpor Music Ltd. All Rights Reserved</strong>');
    document.write('        </td>');
    document.write('        <td style="width: 10px; height: 21px">');
    document.write('        </td>');
    document.write('    </tr>');
    document.write('</table>');
}
