/***** Script to create another instance of [Update Order] Button on the top right of the page *****/

$(document).ready(function()
{
var filename = window.location.href.substr(window.location.href.lastIndexOf("/") + 1);
filename = filename.toUpperCase();
// if (filename.indexOf("ORDERS.HTML") > -1)
if (filename.indexOf("ORDERS.ASPX") > -1)
{
$("#UOButton").show();
$("input#ordergrid_updatebtn2").attr('name', $("#ordergrid_btnUpdate").attr('name')); // Set Name of Duplicated input to be the same
$("div#tl1").before("<table border='0' cellspacing='2' cellpadding='1' style='width:730px; margin-left:25px;'><tbody><tr><td style=' width:120px; background:#BB0F05; padding:10px 10px; color:White; text-align:center; font-weight:900;'> POOL LINERS</td><td style='font-size:12px; padding:2px 8px; border:1px solid #BB0F05;'><b>As pool dimensions vary between brands, and it's important that your liner fits well, please specify the pool brand each liner is for, in the field marked [+Note].</b></td></tr></tbody></table>");
 }
else
 {
$("#UOButton").hide();
}
});
