<!--
var hexmap = new Array("0","1","2","3","4","5","6","7","8","9","A","B","C","D","E","F");
function hex(a){if(a<256) return "%"+hexmap[a>>4]+hexmap[a&0xf];else return hex(a>>8)+hex(a&0xf);}
function encodeUTF8(d) {
		var utft = "";var a=d.toString();
		for(var n=0; n<a.length; n++)
		{
			var c=a.charCodeAt(n);
			if(c<128)
				utft += hex(c);
			else if(127<c && c<0x800)
			{
				utft += hex((c>>6)|192);
				utft += hex((c&63)|128);
			} else if(0x7ff<c && c<0x10000)
			{
				utft += hex((c>>12)|224);
				utft += hex(((c>>6)&63)|128);
				utft += hex((c&63)|128);
			} else if(0xffff<c && c<0x200000)
			{
				utft += hex((c>>18)|0xf0);
				utft += hex(((c>>12)&63)|128);
				utft += hex(((c>>6)&63)|128);
				utft += hex((c&63)|128);
			} else if(0x1FFFFF<c && c<0x4000000)
			{
				utft += hex((c>>24)|0xf8);
				utft += hex(((c>>18)&63)|128);
				utft += hex(((c>>12)&63)|128);
				utft += hex(((c>>6)&63)|128);
				utft += hex((c&63)|128);
			} else if(0x3FFFFFF<c && c<0x80000000)
			{
				utft += hex((c>>30)|0xfc);
				utft += hex(((c>>24)&63)|128);
				utft += hex(((c>>18)&63)|128);
				utft += hex(((c>>12)&63)|128);
				utft += hex(((c>>6)&63)|128);
				utft += hex((c&63)|128);
			}
		}
		return utft;
	}
function b(a) { if( typeof encodeURIComponent=="function" ) { return encodeURIComponent(a.toString()); } else return encodeUTF8(a.toString()); }
function u(){return document.location.href;}
function r(){return document.referrer;}
function showad(){
  var y=YahooCNADConfig;
  cust="";
  if(window.YahooCustConfig)
  {
  	  var c=YahooCustConfig;
	  for(x in c) cust+=x+"%3D"+c[x]+"|";
	  YahooCustConfig=null;
  }	  
	document.write('<iframe name="ycn_ads_frame" width='+y["w"]
					+" height="+y["h"]
					+" frameborder=0 border=0"
					+" src='http://view.aliunion.cn.yahoo.com/");
	if(y["wid"]==0) document.write("seladno.php");
	else document.write("selad.php");	
	document.write("?adid="+parseInt(y["adid"])
					+"&wid="+parseInt(y["wid"]));
	if(typeof(y["sid"])!="undefined" && y["sid"]!="") document.write("&sid="+y["sid"]);
	if(typeof(cust)!="undefined" && cust!="")document.write("&cust="+cust);
	document.write("&w="+y["w"]);
	document.write("&h="+y["h"]);
	document.write("&u="+b(u()));
	document.write("&r="+b(r()));
	document.write("'"+' marginwidth="0" marginheight="0" vspace="0" hspace="0" allowtransparency="true" scrolling="no">');
	document.write('</iframe>');
	cust="";
}
showad();
-->
