image = new Array();    
link  = new Array();    
type  = new Array();   

baseurl="http://www.dpnet.com.cn";

image[0] = "/ad/images/dp-mag-Banner.jpg";
type[0]=0;
link[0] = "http://emagazine.dpnet.com.cn/"; 

//image[1] = "/ad/images/match_em_bar.swf";
//image[1] = "/ad/images/canon_expo_home_bar.swf";
//image[1] = "/ad/images/SONY-TX5_hp_1st_topbanner_540x60_fx.swf";//sony tx5 fx
//image[1] = "/ad/images/sony_tx5_fz_home_bar.swf";//sony tx5 fz
//image[1] = "/ad/images/canon_clu_mjh_home_bar.swf";
//image[1] = "/ad/images/sony_apc_home_bar.swf";//sony apc

type[1]=1;
link[1] = ""; 
index=0;

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=Opaque>");	
	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' wmode='Opaque'>");
	document.write("</embed></object>");
	break;
}

