function externalLinks() {
 if (!document.getElementsByTagName) return;
 var anchors=document.getElementsByTagName("a");
 for (var i=0; i<anchors.length; i++) {
  var anchor=anchors[i];
  if (anchor.getAttribute("href") && anchor.getAttribute("rel")=="external")
   anchor.target="_blank";
 }
}
function ChkDelCat() {
 if (confirm('Deleting the Category will remove the Category, All Sub-Category and any Product Categories\nAre you sure?')) {
  return true;
 } else {
  return false;
 }
}
function ChkDelImg() {
 if (confirm('The Product image will be Deleted\nAre you sure?')) {
  return true;
 } else {
  return false;
 }
}
function ChkDelProd() {
 if (confirm('The Product will be Deleted\nAre you sure?')) {
  return true;
 } else {
  return false;
 }
}