contentsource = "http://app2.mlaw.gov.sg/Portals/6/Images/mediaplayer/";

function createPlayer(strfile, strstreamer, autostart, width, height, videodiv)
{

  if (width == null)
  {
    width = 400;
  }

  if (height == null)
  {
    height = 300;
  }

  var objplayer = new SWFObject(contentsource+'player.swf','vidplayer',width,height,'9.0.115','#000000');
  objplayer.addParam('allowfullscreen','true');objplayer.addParam('allowscriptaccess','always');objplayer.addParam('wmode','transparent');objplayer.addVariable('file', strfile);objplayer.addVariable('streamer', strstreamer);objplayer.addVariable('autostart', autostart);objplayer.addVariable('skin', contentsource+'evvomedia.swf');objplayer.addVariable('image', contentsource+'evvomedia.jpg');
  objplayer.write(videodiv);

}

window.onerror = noError;
function noError(){return true;}


