<!--
 // updated by MNG 07/16/2004
 // updated by MNG 10/09/2002
 // created by Nihat M. Gurmen 07/16/2002

 var mediaWin;

 function openWinMPDim(url, w, h) {
  mediaWin = window.open("","WindowsMediaPlayer","toolbar=no,resizable=no,scrollbars=no,left=50,top=50,width=" + w + ",height=" + h + ",noresize");
  mediaWin.document.open();
  mediaWin.document.writeln("<HTML>");
  mediaWin.document.writeln("<BODY>");
  mediaWin.document.writeln("<DIV align=\"center\"><A HREF=\"javascript:self.close()\">close</A><br><br>");

  mediaWin.document.writeln("<OBJECT ID=\"mediaPlayer\" CLASSID=\"CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95\" CODEBASE=\"http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701\" STANDBY=\"Loading Microsoft Windows Media Player components...\" TYPE=\"application\/x-oleobject\">");
  mediaWin.document.writeln("<param name=\"FILENAME\" value=\"" + url + "\">");
  mediaWin.document.writeln("<param name=\"ANIMATIONATSTART\" value=\"true\">");
  mediaWin.document.writeln("<param name=\"TRANSPARENTATSTART\" value=\"true\">");
  mediaWin.document.writeln("<param name=\"AUTOSTART\" value=\"true\">");
  mediaWin.document.writeln("<param name=\"SHOWCONTROLS\" value=\"true\">");
  mediaWin.document.writeln("</OBJECT>");

  mediaWin.document.writeln("</DIV>");
  mediaWin.document.writeln("</BODY>");
  mediaWin.document.writeln("</HTML>");
  mediaWin.document.close();
 }
 
 function openWinQTDim(url, w, h) {
  mediaWin = window.open("","QuickTime","toolbar=no,resizable=no,scrollbars=no,left=50,top=50,width=" + w*1.3 + ",height=" + h*1.5 + ",noresize");
  mediaWin.document.open();
  mediaWin.document.writeln("<HTML>");
  mediaWin.document.writeln("<BODY>");
  mediaWin.document.writeln("<DIV align=\"center\"><A HREF=\"javascript:self.close()\">close</A><br><br>");

  mediaWin.document.writeln("<OBJECT CLASSID=\"clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B\" width=" + w + " height=" + h*1.1 + " CODEBASE=\"http://www.apple.com/qtactivex/qtplugin.cab\">");
  mediaWin.document.writeln("<param name=\"SRC\" value=\"" + url + "\">");
  mediaWin.document.writeln("<param name=\"CONTROLLER\" value=\"true\">");
  mediaWin.document.writeln("<param name=\"AUTOPLAY\" value=\"true\">");
  mediaWin.document.writeln("<embed src=\"" + url + "\" width=" + w + " height=" + h*1.1 + " autoplay=\"true\" controller=\"true\" cache=\"true\" PLUGINSPAGE=\"http://www.apple.com/quicktime/download/\">");
  mediaWin.document.writeln("</EMBED>");
  mediaWin.document.writeln("</OBJECT>");

  mediaWin.document.writeln("</DIV>");
  mediaWin.document.writeln("</BODY>");
  mediaWin.document.writeln("</HTML>");
  mediaWin.document.close();
 }

//-->