/*
   # FCON21.BIZ
   # 2008 03 25
   # JavaScript to load Youtube video's
   # Copyright (C)2008 by fcon21.biz - All rights reserved.

*/

function insertobject (url,width,height) {
  if (!url) { return false; }
  if (!width) { width = "350"; } // 425
  if (!height) { height = "300"; } // 355

  document.write('<object width=\"' + width + '\" height=\"' + height + '\"><param name=\"movie\" value=\"' + url + '\"><\/param><param name=\"wmode\" value=\"transparent\"><\/param><embed src=\"' + url + '\" type=\"application/x-shockwave-flash\" wmode=\"transparent\" width=\"' + width + '\" height=\"' + height + '\"><\/embed><\/object>');
}
