﻿// JScript 文件 不透明
/*
function InsertFlash(flashURLO,flashURL,width,height)
{
    document.writeln("<script type=\"text\/javascript\">");
    document.writeln("AC_FL_RunContent( \'codebase\',\'http:\/\/download.macromedia.com\/pub\/shockwave\/cabs\/flash\/swflash.cab#version=9,0,28,0\',\'width\',\'"+width+"\',\'height\',\'"+height+"\',\'src\',\'"+flashURLO+"\',\'quality\',\'high\',\'pluginspage\',\'http:\/\/www.adobe.com\/shockwave\/download\/download.cgi?P1_Prod_Version=ShockwaveFlash\',\'movie\',\'"+flashURLO+"\' ); \/\/end AC code");
    document.writeln("<\/script><noscript><object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http:\/\/download.macromedia.com\/pub\/shockwave\/cabs\/flash\/swflash.cab#version=9,0,28,0\" width=\"771\" height=\"138\">");
    document.writeln("  <param name=\"movie\" value=\""+flashURL+"\" \/>");
    document.writeln("  <param name=\"quality\" value=\"high\" \/>");
    document.writeln("  <embed src=\""+flashURL+"\" quality=\"high\" pluginspage=\"http:\/\/www.adobe.com\/shockwave\/download\/download.cgi?P1_Prod_Version=ShockwaveFlash\" type=\"application\/x-shockwave-flash\" width=\""+width+"\" height=\""+height+"\"><\/embed>");
    document.writeln("<\/object><\/noscript>");
}*/

// JScript 文件 透明
function InsertFlash(flashURLO,flashURL,width,height)
{
    //document.writeln("<script type=\"text\/javascript\">");
    //document.writeln("AC_FL_RunContent( \'codebase\',\'http:\/\/download.macromedia.com\/pub\/shockwave\/cabs\/flash\/swflash.cab#version=9,0,28,0\',\'width\',\'"+width+"\',\'height\',\'"+height+"\',\'src\',\'"+flashURLO+"\',\'quality\',\'high\',\'pluginspage\',\'http:\/\/www.adobe.com\/shockwave\/download\/download.cgi?P1_Prod_Version=ShockwaveFlash\',\'movie\',\'"+flashURLO+"\' ); \/\/end AC code");
    document.writeln("<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http:\/\/download.macromedia.com\/pub\/shockwave\/cabs\/flash\/swflash.cab#version=9,0,28,0\" width=\""+width+"\" height=\""+height+"\">");
    document.writeln("  <param name=\"wmode\" value=\"transparent\" />");
    document.writeln("  <param name=\"movie\" value=\""+flashURL+"\" \/>");
    document.writeln("  <param name=\"quality\" value=\"high\" \/>");
    document.writeln("  <embed src=\""+flashURL+"\" quality=\"high\" pluginspage=\"http:\/\/www.adobe.com\/shockwave\/download\/download.cgi?P1_Prod_Version=ShockwaveFlash\" type=\"application\/x-shockwave-flash\" width=\""+width+"\" height=\""+height+"\"><\/embed>");
    document.writeln("<\/object>");
}

 function imgslt()
 {
 	var imgs = document.getElementsByTagName("img");
	 
	for(var i=0;i< imgs.length;i++)
	{
		var image=new Image(); 
        image.src=imgs[i].src; 
		imgs[i].onclick = function(){window.open(this.src);}
        if(image.width >= 500)
		{			
			imgs[i].width = 500;			
		}
		else
		{			
			//高度不管
		}
	}
	
 }
 <!-- 
    function ResumeError() {
    return true;
}
window.onerror = ResumeError;
// -->
