function pasteFlash(){
// -----------------------------------------------------------------------------
// Globals
// Major version of Flash required
var requiredMajorVersion = 8;
// Minor version of Flash required
var requiredMinorVersion = 8;
// Minor version of Flash required
var requiredRevision = 0;
// -----------------------------------------------------------------------------
var hasProductInstall = DetectFlashVer(6, 0, 65);
var hasReqestedVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
var MMredirectURL = "http://www.diosol.com.mx/";
if ( hasProductInstall && !hasReqestedVersion ) {
    var productInstallOETags = '<script type="text/javascript">AC_FL_RunContent("codebase","http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0","width","100%","height","100%","src","top","quality","high","pluginspage","http://www.macromedia.com/go/getflashplayer","movie","swf/update?MMredirectURL='+MMredirectURL+'&MMplayerType=PlugIn");</script>';
	document.write(productInstallOETags);   // embed the Flash Product Installation SWF
} else if (hasReqestedVersion) {  // if we've detected an acceptable version
    var oeTags = '<script type="text/javascript">AC_FL_RunContent("codebase","http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0","width","100%","height","100%","src","top","quality","medium","menu","false","pluginspage","http://www.macromedia.com/go/getflashplayer","movie","swf/index");</script>';
    document.write(oeTags);   // embed the Flash Content SWF when all tests are passed
  } else {  // flash is too old or we can't detect the plugin
    var alternateContent = '';
    document.write(alternateContent);  // insert non-flash content
  }
 }