// © 2003 Paper Pals
// All JavaScript code is proprietary property of Paper Pals.
// Copying and distribution without prior approval is stricly prohibited.

function SampleOpen(pic)
{
PicName = pic;
if (!window.window1)
   {
   // window1 has not yet been defined, so will now.
   window1 = window.open('Sample.htm','Win1','resizable=no,scrollbars=yes,width=300,height=400,left=50,top=50');
   }
else
   {
   // window1 has been defined
   if (!window1.closed)
      {
      // window1 is still open
      window.open('Sample.htm','Win1','resizable=no,scrollbars=no,width=300,height=400,left=50,top=50');
      }
   else
      {
      // window1 has been closed, so will open again
      window.open('Sample.htm','Win1','resizable=no,scrollbars=no,width=300,height=400,left=50,top=50');
      }
   }
}

function ChangeFocus()
{
focus();
}
