/////Вставка видео/////////
function insert_video(path,w,h,tipe,wher,plugin)
 {
   temppage = '<embed type="'+tipe+'" src="'+path+'" showdisplay=0 showcontrols=1 width="'+w+'" height="'+h+'" PLUGINSPAGE="'+plugin+'"></embed>';
   document.getElementById(wher).innerHTML= temppage;

  return false;
 }

////Отображение фоток//////////
function ShowPict(title,src)
{
  w_pict = open("", 'title', "width=400,height=400,menubar=no,status=no,toolbar=no,resizable=yes");
  w_pict.document.open();
  w_pict.document.writeln('<html><head><title>' + title + '</title></head><body bgcolor="#000000" leftmargin="0" topmargin="0">');
  w_pict.document.writeln('<img src= ' + src + ' border=0 ALIGN="MIDDLE"' +
  'onLoad = "window.resizeTo(window.document.images[0].width + 13, window.document.images[0].height + 30)">');
  w_pict.document.writeln('</body></html>');
  w_pict.document.close();
  w_pict.focus();
}

function insert_flash(path,img,w,h)
{
	temppage = '<object width="'+w+'" height="'+h+'"><param name="bgcolor" value="#ffffff" /><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="movie" value="http://border-terrier.ru/uppod.swf" /><param name="flashvars" value="comment=Атаман&amp;m=video&amp;file=http://border-terrier.ru/'+path+'&amp;poster=http://border-terrier.ru/'+img+'" /><embed src="http://border-terrier.ru/uppod.swf" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" flashvars="comment=Атаман&amp;m=video&amp;file=http://border-terrier.ru/'+path+'&amp;poster=http://border-terrier.ru/'+img+'" bgcolor="#ffffff" width="'+w+'" height="'+h+'"></embed></object>';
	document.getElementById('video').innerHTML= temppage;

    return false;
}
