// JavaScript Document

var pagename;
pagename = window.location.pathname.toUpperCase();

var boatpatt=new RegExp("BOAT");
var removerpatt=new RegExp("RM");
var acidpatt=new RegExp("ACID");


if (boatpatt.test(pagename)==true)
{

document.write("<a href='http://twitter.com/#!/BoatMagicUSA'><img style='border:none; margin-right:5px;' src='../image/Twitter_btn.png' width='40' height='40' /></a>");

document.write("<a href='http://www.facebook.com/pages/BOAT-Magic/275209505823484'><img style='border:none; margin-right:5px;' src='../image/Facebook_btn.png' width='40' height='40' /></a>");

document.write(
"<a href='http://boatmagic.blogspot.com/'><img  style='border:none; margin-right:5px;' src=' ../image/Blogger_btn.png' width='40' height='40' /></a>");
}

else if (removerpatt.test(pagename)==true)

{

document.write("<a href='http://twitter.com/#!/RemoverMagicUSA'><img style='border:none; margin-right:5px;' src='../image/Twitter_btn.png' width='40' height='40' /></a>");

document.write("<a href='http://www.facebook.com/pages/Remover-Magic/260727273958741'><img style='border:none; margin-right:5px;' src='../image/Facebook_btn.png' width='40' height='40' /></a>");

document.write(
"<a href='http://certol.blogspot.com/'><img  style='border:none; margin-right:5px;' src=' ../image/Blogger_btn.png' width='40' height='40' /></a>");

}

else if (acidpatt.test(pagename)==true)
{
document.write("<a href='http://twitter.com/#!/AcidMagicUSA'><img style='border:none; margin-right:5px;' src='../image/Twitter_btn.png' width='40' height='40' /></a>");

document.write("<a href='http://www.facebook.com/pages/Acid-Magic/245684702134641?ref=pb'><img style='border:none; margin-right:5px;' src='../image/Facebook_btn.png' width='40' height='40' /></a>");

document.write(
"<a href='http://certol.blogspot.com/'><img  style='border:none; margin-right:5px;' src=' ../image/Blogger_btn.png' width='40' height='40' /></a>");
}

else

{
document.write("<a href='http://twitter.com/#!/certolusa'><img style='border:none; margin-right:5px;' src='../image/Twitter_btn.png' width='40' height='40' /></a>");

document.write("<a href='http://www.facebook.com/pages/Certol-International/112973565397281'><img style='border:none; margin-right:5px;' src='../image/Facebook_btn.png' width='40' height='40' /></a>");

document.write(
"<a href='http://certol.blogspot.com/'><img  style='border:none; margin-right:5px;' src=' ../image/Blogger_btn.png' width='40' height='40' /></a>");

}

