function openIt(scroll, width, height, position)
{
  if (screen)
  {
    if (screen-width <= 810)
        leftPos = screen.width - 300;
    else if (screen-width >= 800)
        leftPos = screen.width - 300;
    else{}
    topPos = screen.height - 100;
  }

  var options = "top=100,left=100,toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,scrollbars="+scroll+",height="+height+",width="+width;
  if (position = "n")
    var newWin=window.open("", "newwin", "top=0,left=0,toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,scrollbars="+scroll+",height="+height+",width="+width);
  else
    var newWin=window.open("", "newwin", "top=0,left=0,toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,scrollbars="+scroll+",height="+height+",width="+width+",left="+leftPos+",top="+topPos);

  return 0;
}

function putIt(scroll, width, height, position)
{
  var options = "top=100,left=100,toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,scrollbars="+scroll+",height="+height+",width="+width,
      leftPos = 0, topPos = 0;
  
  if (screen)
  {
    if (screen.width == 800)
    {
      leftPos = screen.width - 730;
      topPos = screen.height - 345;
    }
    else if (screen.width == 1024)
    {
      leftPos = screen.width - 970;
      topPos = screen.height - 515;
    }
    else
    {
      leftPos = screen.width - screen.width;
      topPos = screen.height - screen.height;
    }
  }

  var newWin=window.open("", "newwin", "top=0,left=0,toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,scrollbars="+scroll+",height="+height+",width="+width+",left="+leftPos+",top="+topPos);

  return 0;
}

function openFlyer(scroll, width, height, position)
{
  if (screen)
  {
    if (screen-width <= 810)
        leftPos = screen.width - 300;
    else if (screen-width >= 800)
        leftPos = screen.width - 300;
    else{}
    topPos = screen.height - 100;
  }

  var options = "top=100,left=100,toolbar=no,location=no,directories=no,status=no,menubar=yes,resizable=yes,scrollbars="+scroll+",height="+height+",width="+width;
  if (position = "n")
    var newWin=window.open("", "newwin", "top=0,left=0,toolbar=no,location=no,directories=no,status=no,menubar=yes,resizable=yes,scrollbars="+scroll+",height="+height+",width="+width);
  else
    var newWin=window.open("", "newwin", "top=0,left=0,toolbar=no,location=no,directories=no,status=no,menubar=yes,resizable=yes,scrollbars="+scroll+",height="+height+",width="+width+",left="+leftPos+",top="+topPos);

  return 0;
}

function putFlyer(scroll, width, height, position)
{
  var options = "top=100,left=100,toolbar=no,location=no,directories=no,status=no,menubar=yes,resizable=no,scrollbars="+scroll+",height="+height+",width="+width,
      leftPos = 0, topPos = 0;
  
  if (screen)
  {
    if (screen.width == 800)
    {
      leftPos = 0;//screen.width - 730;
      topPos = 0;//screen.height - 345;
    }
    else if (screen.width == 1024)
    {
      leftPos = 0;//screen.width - 970;
      topPos = 0;//screen.height - 515;
    }
    else
    {
      leftPos = screen.width - screen.width;
      topPos = screen.height - screen.height;
    }
  }

  var newWin=window.open("", "newwin", "top=0,left=0,toolbar=no,location=no,directories=no,status=no,menubar=yes,resizable=no,scrollbars="+scroll+",height="+height+",width="+width+",left="+leftPos+",top="+topPos);

  return 0;
}