function simpop(varDas,myWidth,myHeight,myTop,myLeft)
{
var generator=window.open('','name','height='+ myHeight +',width='+ myWidth + ',top='+myTop+',left='+myLeft);
generator.document.write('<html><head><title>');
generator.document.write(varDas);
generator.document.write('</title></head>');
generator.document.write('<body bgcolor="#F5F5F5">');
generator.document.write('<br><br><center>');
generator.document.write('<OBJECT ID="MediaPlayer" WIDTH=320 HEIGHT=240');
generator.document.write('  CLASSID="CLSID:22D6f312-B0F6-11D0-94AB-0080C74C7E95"');
generator.document.write('  STANDBY="Loading Windows Media Player components..." ');
generator.document.write('  TYPE="application/x-oleobject"');
generator.document.write('CODEBASE="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,7,1112">');
generator.document.write('  <PARAM name="autoStart" value="True">');
generator.document.write('  <PARAM name="filename" value="media/img/AG_LT_256.wmv">');
generator.document.write('<EMBED TYPE="application/x-mplayer2" ');
generator.document.write('    SRC="media/img/AG_LT_256.wmv"');
generator.document.write('    NAME="MediaPlayer"');
generator.document.write('    WIDTH=320');
generator.document.write('    HEIGHT=240  AUTOSTART="1" showdisplay="0" showstatusbar="1" showcontrols="0">');
generator.document.write('  </EMBED>');
generator.document.write('</OBJECT>');
generator.document.write('</center>');
generator.document.write('</body>');
generator.document.write('</html>');
generator.document.close();
}