// JavaScript Document

var popUpWin=0;

function popUpImage(URLStr,Desc, left, top, width, height)
{
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = window.open('', 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
  popUpWin.document.write('<html>\n');
  popUpWin.document.write('<head>\n');
  popUpWin.document.write('<title>',Desc,'</title>\n');
  popUpWin.document.write('</head>\n');
  popUpWin.document.write('<body style="margin: 0px;" bgcolor="#FFFFFF">\n');
  popUpWin.document.write('<img src="',URLStr,'" width="',width,'" height="',height,'" alt="',Desc,'">\n');
  popUpWin.document.write('</body>\n');
  popUpWin.document.write('</html>\n');
}

function popUpVideo(URLStr,Desc, left, top, width, height)
{
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = window.open('', 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=no,resizable=no,copyhistory=yes,width='+(width+20)+',height='+(height+20)+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
  popUpWin.document.write('<html>\n');
  popUpWin.document.write('<head>\n');
  popUpWin.document.write('<title>',Desc,'</title>\n');
  popUpWin.document.write('</head>\n');
  popUpWin.document.write('<body style="margin: 0px;" bgcolor="#FFFFFF">\n');
  popUpWin.document.write('<table width="',(width+20),'" align="center" border="0" cellspacing="0" cellpadding="0">\n');
  popUpWin.document.write('<tr>\n');
  popUpWin.document.write('<td width="',(width+20),'" height="',(height+20),'" align="center" valign="middle">\n');
  popUpWin.document.write('<object id="video" width="',width,'" height="',height,'" border="0" classid="CLSID:05589FA1-C356-11CE-BF01-00AA0055595A">\n');
  popUpWin.document.write('<param name="ShowDisplay" value="0">\n');
  popUpWin.document.write('<param name="ShowControls" value="1">\n');
  popUpWin.document.write('<param name="AutoStart" value="1">\n');
  popUpWin.document.write('<param name="AutoRewind" value="1">\n');
  popUpWin.document.write('<param name="PlayCount" value="1">\n');
  popUpWin.document.write('<param name="Appearance" value="0">\n');
  popUpWin.document.write('<param name="BorderStyle" value="0">\n');
  popUpWin.document.write('<param name="MovieWindowHeight" value="',height,'">\n');
  popUpWin.document.write('<param name="MovieWindowWidth" value="',width,'">\n');
  popUpWin.document.write('<param name="FileName" value="',URLStr,'">\n');
  popUpWin.document.write('<embed src="',URLStr,'" type="video/x-ms-wmv" pluginspage="http://www.microsoft.com/Windows/MediaPlayer/" width="',width,'" height="',height,'" loop="false" autostart="1" controls="true" showdisplay="0" showcontrols="1" autorewind="1" playcount="1" moviewindowheight="',height,'" moviewindowwidth="',width,'" filename="',URLStr,'">\n');
  popUpWin.document.write('</embed>\n');
  popUpWin.document.write('</object>\n');
  popUpWin.document.write('</td>\n');
  popUpWin.document.write('</tr>\n');
  popUpWin.document.write('</table>\n');
  popUpWin.document.write('</body>\n');
  popUpWin.document.write('</html>\n');
}

function popUpWindow(URLStr, left, top, width, height)
{
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = open(URLStr, 'popUpWin', 'toolbar=0,scrollbars=0,location=0,status=0,statusbar=0,menubar=0,resizable=0,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}
