  function openInNew (wdth,hgh,url_add) {
       var msie;
       if(navigator.appName.indexOf("Internet Explorer")!=-1) { mie=true; } else { mie=false; };
       if (mie) {
	   var features = 'toolbar=no,location=no,directories=no,status=no,menubar=no,' +
   	                  'scrollbars=yes,titlebar=no,resizable=no,width='+ wdth +',height='+hgh; 
           var posleft = window.screenLeft + ((window.screen.width - wdth) / 2)
           var postop = window.screenTop + ((window.screen.height - hgh) / 2)-100
           features=features + ",left=" + posleft + ",top=" + postop;
           var xxx=window.open (url_add,"",features);
	   
	   return xxx;
	} else {
	   var features = 'toolbar=no,location=no,directories=no,status=no,menubar=no,' +
   	                  'scrollbars=yes,titlebar=no,resizable=no,innerWidth='+wdth+',innerHeight='+hgh
           var posleft = window.screenX + ((window.outerWidth - wdth) / 2)
           var postop = window.screenY + ((window.outerHeight - hgh) / 2)
           features=features + ",left=" + posleft + ",top=" + postop;
           return window.open (url_add,"",features);
	}
	
  } 

  function popUpLocator () {
	 openInNew(540,640,"http://scrapbook.sandylion.com/storelocator/storelocator_stationery.aspx")
  }
  
  function popUpCatalog() {
	 openInNew(725,640,"https://b2b.sandylion.com/catalog_stationery.aspx")
  }