function VideoMonteFacil()
{
	document.write('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="330" height="290" id="capao" ALIGN="">');
	document.write('<PARAM NAME=movie VALUE="'+video+'" wmode="transparent">');
	document.write('<PARAM NAME=quality VALUE=high>');
	document.write('<PARAM NAME=bgcolor VALUE=#FFFFFF>');
	document.write('<PARAM NAME=wmode VALUE=transparent>');
	document.write('<PARAM NAME=allowScriptAccess value=always>');
	document.write('<EMBED src="'+video+'" quality=high bgcolor=#FFFFFF width="330" height="290" NAME="capao"  ALIGN=""  TYPE="application/x-shockwave-flash" PLUGINSPAGE="https://www.macromedia.com/go/getflashplayer" wmode="transparent"  allowScriptAccess="always">');
	document.write('</EMBED>');
	document.write('</OBJECT>');
}



// XWindow

function xWindow(name, w, h, x, y, loc, men, res, scr, sta, too)
{
  var e='',c=',',xf='left=',yf='top='; this.n = name;
  if (document.layers) {xf='screenX='; yf='screenY=';}
  this.f = (w?'width='+w+c:e)+(h?'height='+h+c:e)+(x>=0?xf+x+c:e)+
    (y>=0?yf+y+c:e)+'location='+loc+',menubar='+men+',resizable='+res+
    ',scrollbars='+scr+',status='+sta+',toolbar='+too;
  this.opened = function() {return this.w && !this.w.closed;};
  this.close = function() {if(this.opened()) this.w.close();};
  this.focus = function() {if(this.opened()) this.w.focus();};
  this.load = function(sUrl) {
    if (this.opened()) this.w.location.href = sUrl;
    else this.w = window.open(sUrl,this.n,this.f);
    this.focus();
    return false;
  };
}

// Para fechar, usar um link com: onclick='winToys.close()' 
// Paara dar o focus,  usar um link com: onclick='winToys.focus()'

//  Definicoes das Janelas XWindow:  (name, w, h, x, y, loc, men, res, scr, sta, too) 

var PopVideo = new xWindow('PopVideo',376,375,200,150,0,0,0,0,0,0);






