var PeeVeeObject = function(contenturl, usernumber, contentnumber, playsecond, width, height)
{
  this.contenturl = contenturl;
  this.usernumber = usernumber;
  this.contentnumber = contentnumber;
  this.playsecond = playsecond;
  this.width = width;
  this.height = height;
}

var PVO = PeeVeeObject.prototype;

PVO.write = function()
{
  document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="'+this.width+'" height="'+this.height+'" id="pluginplayer" align="middle">');
  document.write('<param name="allowScriptAccess" value="always" />');
  document.write('<param name="movie" value="http://dogalog.excite.co.jp/pluginplayerv3.swf" />');
  document.write('<param name="quality" value="high" />');
  document.write('<param name="wmode" value="transparent">');
  document.write('<embed src="http://dogalog.excite.co.jp/pluginplayerv3.swf" quality="high" wmode="transparent" width="'+this.width+'" height="'+this.height+'" name="pluginplayer" align="middle" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer">');
  document.write('</embed>');
  document.write('</object>');
}
