function openDes() {
 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("onclick") == "openDes();")
     window.open ("/products/onlinedesigner.html","Designer","menu=no,location=no,resizable=no,scrollbars=yes,status=no,width=1200px,height=1000");
 }
}
window.onload = openDes;

function openShop() {
 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("onclick") == "openShop();")
     window.open ("/shop","Designer","menu=no,location=no,resizable=no,scrollbars=yes,status=no,width=1200px,height=1000");
 }
}
window.onload = openShop;




