function vidobject(videofilnamn)
{
  return "<div align='center'><OBJECT ID='MediaPlayer' WIDTH='500' HEIGHT='400' class='nomargin'"
  +"   CLASSID='CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95'"
  +"   STANDBY='Loading Microsoft Windows Media Player components...'"
  +"   TYPE='application/x-oleobject'" 	
  +"   CODEBASE='http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,7,1112'>" 
  +"<PARAM NAME='filename' VALUE='"+videofilnamn+"'>" 
  +"<PARAM NAME='loop' VALUE='false'>" 
  +"<PARAM NAME='autoStart' VALUE='true'>"
  +"<PARAM NAME='showControls' VALUE='true'>"
  +"<PARAM NAME='ShowStatusBar' VALUE='true'>" 
  +"<PARAM NAME='Autorewind' VALUE='true'>"
  +"</OBJECT></div>";
}
function vidpopup(url)
{
  popup=window.open(url,"video",
  "directories=0,titlebar=0,toolbar=0,scrollbars=0,location=0,status=0,menubar=0,resizable=0,width=500,height=400,left=0,top=0");
}
