

// identifying upper left corner
  leftPos1=0
  if(screen){
    leftPos1=screen.width-600;
  }

// opening new window on the location
  function newWindow(popup_page1){
    popWindow1=window.open(popup_page1, 'popup', 'width=590,height=400,left='+leftPos1+',top=120,statusbar=yes,toolbar=yes,menubar=yes,resizable=yes,scrollbars=yes,location=yes');
    popWindow1.focus();
  }

// cheap trick for contact forms
  leftPos2=0
  if(screen){
    leftPos2=screen.width-750;
  }
  function contactWindow(popup_page2){
    popWindow2=window.open(popup_page2, 'popup2', 'width=740,height=440,left='+leftPos2+',top=120,menubar=no,scrollbars=yes,resizable=yes,toolbar=no');
    popWindow2.focus();
  }

// cheap trick for opening up the store
  leftPos3=0
  if(screen){
    leftPos3=screen.width-730;
  }
  function storeWindow(popup_page3){
    popWindow3=window.open(popup_page3, 'popup3', 'width=710,height=550,left='+leftPos3+',top=120,menubar=yes,scrollbars=yes,resizable=yes,toolbar=yes');
    popWindow3.focus();
  }