﻿var speed = 3;
function init(){
  var el = document.getElementById("marquee_replacement");
  el.style.overflow = 'hidden';
  scrollFromBottom();
}
 
var go = 0;
function scrollFromBottom(){
  var el = document.getElementById("marquee_replacement");
  if(el.scrollTop >= el.scrollHeight-150){
    el.scrollTop = 0;
  };
  el.scrollTop = el.scrollTop + speed;
  if(go == 0){
    setTimeout("scrollFromBottom()",250);
  };
}
 
function stop(){
  go = 1;
}
 
function startit(){
  go = 0;
  scrollFromBottom();
}

//flash insert function start
function insertFlash(elm, url, w, h) {
if (!document.getElementById(elm)) return;
var str = '';
str += '<object width="'+ w +'" height="'+ h +'" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0">';
str += '<param name="movie" value="'+ url +'">';
str += '<param name="wmode" value="transparent">';
str += '<param name="quality" value="autohigh">';
str += '<embed width="'+ w +'" height="'+ h +'" src="'+ url +'" quality="autohigh" wmode="transparent" type="application/x-shockwave-flash" plugspace="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"></embed>';
str += '</object>';
document.getElementById(elm).innerHTML = str;
}
//insert end

function showheader()
{
document.write('<div id="header"><span id="fourBoards">');
document.write('<a href="index.aspx">新闻首页</a>&nbsp;|&nbsp;<a href="../tuozhan/index.aspx" target="_blank">素质拓展</a>&nbsp;|&nbsp;<a href="../yuandian0" target="_blank">原点文学</a>&nbsp;|&nbsp;<a href="../newcity" target="_blank">青年城</a></span><div id="nav"><a href="index.aspx" title="理工青年" class="index">首页</a>');
document.write('<ul class="topNav"><li><a href="http://su.whut.edu.cn" title="学生会" target="blank">学生会</a></li><li><a href="zzjg0.aspx" title="组织机构">组织机构</a></li><li><a href="more.aspx?id=15" title="网上团校">网上团校</a></li><li><a href="more.aspx?id=14" title="规章制度">规章制度</a></li><li><a href="more.aspx?id=13" title="办公文件">办公文件</a></li><li><a href="more.aspx?id=9" title="西部回声">西部回声</a></li><li><a href="more.aspx?id=27" title="青年研究会">青年研究会</a></li>');
document.write('<li><a href="more.aspx?id=22" title="光荣榜">光荣榜</a></li><li><a href="more.aspx?id=21" title="共青之声">共青之声</a></li><li><a href="more.aspx?id=28" title="青马工程">青马工程</a></li><li><a href="more.aspx?id=31" title="理工才俊">理工才俊</a></li><li><a href="more.aspx?id=33" title="工作简报">工作简报</a></li><li><a href="xytw.aspx" title="学院团委">学院团委</a></li><li><a href="../news2007/newspaper" title="理工青年报" target="_blank">理工青年报</a></li></ul></div>');
document.write('<div id="topFla"></div><script language="javascript" type="text/javascript">insertFlash("topFla", "top.swf", 400, 150);</script></div>');
}


function showfooter()
{
document.write('<div id="footer"><a href="index.aspx" title="首页">首页</a>&nbsp;|&nbsp;');
document.write('<a href="../workplace/" title="关于我们" target="_blank">关于我们</a>&nbsp;|&nbsp;<a href="/ads.htm" title="广告服务" target="_blank">广告服务</a>&nbsp;|');
document.write('&nbsp;<a href="/newcity/manage/register.aspx" title="青年城注册" target="_blank">青年城注册</a>&nbsp;|&nbsp;<a href="mailto:wutyouth@163.com" title="联系我们" target="_blank">联系我们</a>');
document.write('<p>2008 &copy; 共青团武汉理工大学委员会. All rights reserved.</p><p class="signature">Powered by <a href="http://www.wutyouth.net">理工青年</a></p>');
document.write('<br class="spacer" /></div>');
}