﻿var adver_width = 760; //广告宽度
var adver_height = 455; //广告高度
var adver_swfurl = "http://www.china774.com/adver/main.swf"; //广告地址
var adver_cssurl = "http://www.china774.com/adver/adver.css"; //css地址

function $id( id ) { //通过ID获取对象
	if ( window.document.getElementById ){
		$id = function( id ) {
			return window.document.getElementById( id );
		}
		return $id( id );
	} else if ( window.document.all ){
		$id = function( id ) {
			return window.document.all[ id ];
		}
		return $id( id );
	} else if ( window.document.layers[ id ] ){
		$id = function( id ) {
			return window.document.layers[ id ];
		}
		return $id(id);
	}
	alert( "Error: Lack of access to HTML object, upgrade your browser to IE6 or later!" );
	$id = function( id ){
		return null;
	}
	return $id(id);
}

function adfloat( URL, width, height ) { //显示广告
	tmpstr = "<div id=\"adflcenter\"><div style=\"width: " + width + "px; height: " + height + "px;\"><object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0\" width=\"" + width + "\" height=\"" + height + "\">\n<param name=\"movie\" value=\"" + URL + "\" />\n<param name=\"quality\" value=\"hign\" />\n<param name=\"wmode\" value=\"transparent\"></param>\n<embed src=\"" + URL+ "\" quality=\"hign\" pluginspage=\"http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash\" type=\"application/x-shockwave-flash\" width=\"" + width+ "\" height=\"" + height+ "\"></embed></object><span onclick=\"adhidden();\"></span></div></div>";
	document.write("<link href=\"" + adver_cssurl + "\" rel=\"stylesheet\" type=\"text/css\" />");
	document.write( tmpstr );
}

function adhidden() { //隐藏广告
	$id('adflcenter').style.display = 'none';
}

//adfloat( adver_swfurl, adver_width, adver_height ); //输出广告