// message display module -- by Harun Bisws, Copyright(c) UltraSoft Technologies Ltd.


//var root_url="http://www.ultrasoft-tech.co.uk/";
//var root_url="http://usthq/ustweb/";
//var root_url="http://www.ust-direct.com/";
//var root_url="http://www.ultrasoft-tech.co.uk/ustweb/";
//var root_url="http://localhost/ust.co.uk/";
//var root_url="http://www.ust.ukgiftbaskets.co.uk/ust-direct/";

//Line feed
var sLF = String.fromCharCode(10); 
var chr34=String.fromCharCode(34); 

//var
var ustlogo_sURL=root_url+"images/uslogo_s.gif" ;
var partner_logos='<img border="0" src="' +root_url+'images/partners/partner_logos.jpg" width="520" height="101">';

//footer_bdr=chr34+root_url+"images/footer_bg1.jpg"+chr34;
var footer_bg=chr34+root_url+"images/bg02.bmp"+chr34;

footer_bdr=chr34+root_url+"images/footer_border_bg_blue_g1.bmp"+chr34;


// do not change anything below from this piont  - HB//


function DrawFooter(cPage)
{
    HTMLStr="<table width=850 border=0 cellpadding=0 cellspacing=0 background="+footer_bg+">"+sLF;
    //HTMLStr+="<tr> <td >&nbsp;</td></tr>"+ sLF;

    HTMLStr+='<tr><td  height=10> </td></tr>'+ sLF;
    //HTMLStr+='<tr><td  align="center">' +partner_logos+' </td></tr>'+ sLF;
    

    //HTMLStr+="<tr> <td class='advertpoint'>&nbsp;</td></tr>"+ sLF;
    //HTMLStr+="<tr bgcolor=#666666><td>&nbsp;</td></tr>"+ sLF;
    	
    HTMLStr+="<tr> <td align='center'>Copyright ©  <a href="+chr34+"http://www.ultrasoft-tech.co.uk/"+chr34+" target="+chr34+"_blank"+chr34+">UltraSoft Technologies Ltd</a><br><br></td></tr>"+ sLF;
    HTMLStr+=" </table>"+ sLF;
    
    //HTMLStr+="<table width=850 height=10 border=0 cellpadding=0 cellspacing=0 background="+footer_bdr+">"+sLF;
    //HTMLStr+="<tr><td>&nbsp;</td> </tr>"+ sLF;
    //HTMLStr+=" </table>"+ sLF;
    document.write(HTMLStr);

}
