// PopUpWindow
var popUpWin=0;
function openMyWindow(URLStr)
{
  if(popUpWin) // Check to see if popUpWindow is already open, and if so, close it
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  URLStr="js/openSample.htm?"+URLStr;
popUpWin=open(URLStr,'popUpWin','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=no,resizable=no,copyhistory=yes,width=820,height=620,left=0,top=0,screenX=0,screenY=0');
}

function showMyFlash(oeTags) {
    document.write(oeTags);   // embed the flash movie
}