function writeVidObject(vidID, width, height, autostart) {
   if (width==null) width= 486;
   if (height==null) height= 294;
//   autostart= (autostart==null || autostart==true) ? 1 : 0;
   
   document.write('<object width="' + width + '" height="' + height + '" >');
   document.write('<param name="movie" value="' + vidID + '"></param>');
   document.write('<param name="allowFullScreen" value="true"></param>');
   document.write('<param name="wmode" value="transparent"></param>');
   if(autostart==true) {
   	document.write('<param name="FlashVars" value="autoStart=1"></param>');
   	document.write('<embed wmode="transparent" src="' + vidID + '" type="application/x-shockwave-flash" FlashVars="autoStart=1" allowFullScreen="true"  width="' + width + '" height="' + height + '" ></embed>');
   } else {
   	document.write('<embed wmode="transparent" src="' + vidID + '" type="application/x-shockwave-flash" allowFullScreen="true"  width="' + width + '" height="' + height + '" ></embed>');
   }
   document.write('</object>');
   
}

function writeVidObject2(vidID, width, height, autostart, logoUrl) {
   if (width==null) width= 486;
   if (height==null) height= 294;
//   autostart= (autostart==null || autostart==true) ? 1 : 0;
   if (logoUrl==null) logoUrl = "http://iquestions.com/images/iq_vid_logo.jpg";
   
   document.write('<object width="' + width + '" height="' + height + '" >');
   document.write('<param name="movie" value="' + vidID + '"></param>');
   document.write('<param name="allowFullScreen" value="true"></param>');
   document.write('<param name="wmode" value="transparent"></param>');
   if(autostart==true) {
   	document.write('<param name="FlashVars" value="autoStart=1&logo_url=' + logoUrl + '"></param>');
   	document.write('<embed wmode="transparent" src="' + vidID + '" type="application/x-shockwave-flash" FlashVars="autoStart=1&logo_url=' + logoUrl + '" allowFullScreen="true"  width="' + width + '" height="' + height + '" ></embed>');
   } else {
	document.write('<param name="FlashVars" value="logo_url=' + logoUrl + '"></param>');
   	document.write('<embed wmode="transparent" src="' + vidID + '" type="application/x-shockwave-flash" FlashVars="logo_url=' + logoUrl + '" allowFullScreen="true"  width="' + width + '" height="' + height + '" ></embed>');
   }
   document.write('</object>');
   
}

