image = new Array();    
link  = new Array();    
type  = new Array();   

baseurl="http://www.dpnet.com.cn";


image[1] = "/ad/images/news_bar_left201109.swf"
type[1]=1;
link[1] = ""; 

image[0] = "/ad/images/topic_news_content_left_bar.jpg"
type[0]=0;
link[0] = "http://www.dpnet.com.cn/topic/20100903nanji/index.html#/"; 
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='720' height='80'></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='720' height='80'>");
        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=transparent>");			
        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='720' height='80'>");
        document.write("</embed></object>");
        break;
    }


