/**
 * @author clive
 */
__path__='http://news.enf.cn/onlinesubmit';//设置path
document.write('<scr'+'ipt type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js" charset="utf-8"></scr'+'ipt>');
dinit=function(num){
	$("div[@id^='s_']").hide();
	$("#s_"+num).show();
}
window.onload=function(){
    ajax_begin=0;
	if($.trim(__lang__)==''||$.trim(__id__)==''){
		return ;
	}
    var $img=$("<img src='"+__path__+"/news/img/load.gif' title='Loading page...'>");
    $("#news").before($img);
	$img.ajaxStart(function(){
	    $(this).show();
	}).ajaxStop(function(){
	    $(this).hide();
	}).ajaxError(function(event, R, ajaxOptions, thrownError){
        if(R.status!=404){
           alert("Error:\n" + R.responseText); 
        }
	});
	var s = new Date().getTime(); // 创建 Date 对象。 
    $.get("/news.php?lang="+__lang__+"&id="+__id__+"&sj="+s, function(res){
		$("#news").css("width","752px");
		$("#news").html(res);
    });
}
