image = new Array();    
link  = new Array();    
type  = new Array();   
disp_random =new Array();

baseurl="http://www.dpnet.com.cn";


image[1] = "/ad/images/match_em_bar.swf";
//image[1] = "/ad/images/sony_xz_bbs_bar.swf";
//image[1] = "/ad/images/SONY_TX5_fz_bbs_bar.swf";
//image[1] = "/ad/images/SONY_TX5_fx_bbs_bar.swf";
type[1]=1;
link[1] = ""; 

image[0] = "/ad/images/match_bar.jpg";
type[0]=0;
link[0] = "http://www.dpnet.com.cn/Match/Home.aspx"; 
index=1;

switch(type[index])
{
 case 0: //image banner	
	document.write("<A HREF='"+link[index]+"'  target='_blank'>");
	document.write("<IMG SRC='"+baseurl+image[index]+"' border='0'  width='540' height='60'></A>");
	break;
 case 1: //flash banner
	document.write("<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0' width='540' height='60'>");
	document.write("<param name=movie value='"+baseurl+image[index]+"?url="+link[index]+"'>");
	document.write("<param name=quality value=high>");
	document.write("<param name=wmode value=wmode>");			
	document.write("<embed src='"+baseurl+image[index]+"?url="+link[index]+"' quality=high pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='540' height='60'>");
	document.write("</embed></object>");
	break;
}

