image = new Array();    
link  = new Array();    
type  = new Array();   

baseurl="http://www.dpnet.com.cn";

	image[1] = "/ad/images/new_home_right_bar.swf";
	type[1]=1;
	link[1] = ""; 

	image[0] = "/ad/images/Renmin-Images-250x80.gif"
	type[0]=0;
	link[0] = "http://www.dpnet.com.cn/topic/200809Renmin/p13/p0.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='250' height='90'></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='250' 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='250' height='80'>");
        document.write("</embed></object>");
        break;
    }


