﻿var pics = "";
var links = "";
var texts = "";
function shownewspic()
{
    var focus_width = 240; //图片宽
    var focus_height = 180; //图片高
    var text_height = 18; //文字高
    var swf_file = "image/pixviewer.swf";
    var swf_height = focus_height + text_height;

	//这里是首页图片新闻的路径、文字和链接，直接修改即生效
    ati('list.aspx?cls=%D5%D0%C9%FA%D7%C9%D1%AF', 'image/09051415182758.jpg', '成教学院承办第十届学生社区文化节');
    ati('list.aspx?cls=%D5%D0%C9%FA%D7%C9%D1%AF', 'image/09052615429358.jpg', '会计从业资格培训班正在上课');
    ati('list.aspx?cls=%D5%D0%C9%FA%D7%C9%D1%AF', 'image/09060810112430.jpg', '2012年华大夜大成人高考招生、考前辅导班报名');
    ati('list.aspx?cls=%D5%D0%C9%FA%D7%C9%D1%AF', 'image/200923143940.jpg', '2012年华大夜大学专科、本科开始报名');

	//输出内容
    document.write('<embed src="'+swf_file+'" wmode="opaque" FlashVars="pics='+pics+'&links='+links+'&texts='+texts+'&borderwidth='+focus_width+'&borderheight='+focus_height+'&textheight='+text_height
      + '" menu="false" bgcolor="#DADADA" quality="high" width="'+ focus_width +'" height="'+ swf_height +'" allowScriptAccess="sameDomain" type="application/x-shockwave-flash"/>');
}
function ati(url, img, title)
{
    if(pics != '')
    {
	    pics = "|" + pics;
	    links = "|" + links;
	    texts = "|" + texts;
    }
    pics = escape(img) + pics;
    links = escape(url) + links;
    texts = title + texts;
}
