// Seal images and code distributed freely
// www.yestradamus.com
// Configure the path to your seal image.
var seal_path = "/img/seal-of-trust-sml.png";
// Enter the domain name of your site. Use commas for multiple domains.
var accepted_domains = new Array("onlinemcparts.com");

var thisNowD = new Date();
var trustSealD = thisNowD.getDate();
var trustSealM = thisNowD.getMonth() + 1;
var trustSealY = thisNowD.getFullYear();
var domaincheck=document.location.href;
var accepted_ok=false;
if (domaincheck.indexOf("http")!=-1){
for (r=0;r<accepted_domains.length;r++){
if (domaincheck.indexOf(accepted_domains[r])!=-1){
accepted_ok=true;
document.write("<div style=\"width:120px; height:51px; position:relative; cursor:pointer;\" onclick=\"alert(\'Certified Seal of Trust\'); return false;\" oncontextmenu=\"alert(\'Certified Seal of Trust\'); return false;\" title=\"Certified Seal of Trust\">");
document.write("<div style=\"top:0; left:0; position:absolute;\"><img src=\""+seal_path+" \" style=\"width:120px; height:51px; border-style:none;\" alt=\"Certified Seal of Trust\"><br /></div>");
document.write("<div style=\"top:34px; right:7px; position:absolute; font-family:Arial,sans-serif; font-size:9px !important; color:#333;\">DATE:&nbsp;&nbsp;<span style=\"color:#003366;\">"+trustSealM+"-"+trustSealD+"-"+trustSealY+"</span></div>");
document.write("</div>");
break;
}
}
}

