
function csi_popup(url){
		var swidth=720;
		var sheight=530;
		var stop=screen.height-sheight-60;
		var sleft=screen.width-swidth-20;
		window.open(url,'popupwn','width='+swidth+',height='+sheight+',top='+stop+',left='+sleft+',resizable=yes,scrollbars=yes');
}

function csi_popnews(url){
	
		var swidth=680;
		var sheight=510;
		var stop=screen.height-sheight-60;
		var sleft=screen.width-swidth-20;
		var my_popup_window = window.open('','popnews','width='+swidth+',height='+sheight+',top='+stop+',left='+sleft+',resizable=yes,scrollbars=yes');
		my_popup_window.document.open();
		my_popup_window.document.write('<html><HEAD><meta http-equiv=\"content-type\" content=\"text/html;charset=GB2312\"><TITLE>CSI 中证指数有限公司</TITLE></HEAD><frameset rows=\"76,*,32\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\" frameborder=\"0\">');
		my_popup_window.document.write('<frame name=\"header\" src=\"news_head.shtml\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\" frameborder=\"0\" noresize>');
		my_popup_window.document.write('<frame name=\"content\" src=\"'+url+'\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"auto\" frameborder=\"0\" noresize>');
		my_popup_window.document.write('<frame name=\"footer\" src=\"news_foot.shtml\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\" frameborder=\"0\" noresize>');
		my_popup_window.document.write('</frameset>');
		my_popup_window.document.write('<body>');
		my_popup_window.document.write('</body></html>');
		my_popup_window.document.close();
		my_popup_window.focus();

}

function href_popUp(url,features){
	if(document.all){
		obj=event.srcElement;
		obj.selectedIndex=0;
	}
	if(url!=""){
		if(features!=null){
			window.open(url,'',features)
		}else{
			window.open(url);
		}
	}
}