﻿// JScript 文件

//改变图片大小
function resizepic(thispic)
{
if(thispic.width>700) thispic.width=700;
}
//无级缩放图片大小
function bbimg(o)
{
  var zoom=parseInt(o.style.zoom, 10)||100;
  zoom+=event.wheelDelta/12;
  if (zoom>0) o.style.zoom=zoom+'%';
  return false;
}
//双击鼠标滚动屏幕的代码
var currentpos,timer;
function initialize()
{
timer=setInterval ("scrollwindow ()",30);
}
function sc()
{
clearInterval(timer);
}
function scrollwindow()
{
currentpos=document.body.scrollTop;
window.scroll(0,++currentpos);
if (currentpos !=document.body.scrollTop)
sc();
}
document.onmousedown=sc
document.ondblclick=initialize

//更改字体大小
var status0='';
var curfontsize=11;
var curlineheight=18;
function fontZoomA(){
  if(curfontsize>8){
    document.getElementById('fontzoom').style.fontSize=(--curfontsize)+'pt';
	document.getElementById('fontzoom').style.lineHeight=(--curlineheight)+'pt';
  }
}
function fontZoomB(){
  if(curfontsize<64){
    document.getElementById('fontzoom').style.fontSize=(++curfontsize)+'pt';
	document.getElementById('fontzoom').style.lineHeight=(++curlineheight)+'pt';
  }
}
function fontZoomStop(){
    curfontsize=11;
    curlineheight=18;
    document.getElementById('fontzoom').style.fontSize=(curfontsize)+'pt';
	document.getElementById('fontzoom').style.lineHeight=(curlineheight)+'pt';
}
//窄告----竖
var tixa_bad_mm_flag=false; <!-- BHVAD flag -->
var tixa_nadInIframe=true; <!-- iframe flag -->
var tixa_nadRowCount=3; <!--the row count of narrowad-->
var tixa_nadColumnCount=1; <!--the column count of narrowad-->
var tixa_nadHeight=240; <!--total height of narrowad-->
var tixa_nadWidth=175; <!--total width of narrowad-->
var tixa_nadBorderColor='666666'; <!--the color of the narrowad's border-->
var tixa_nadBgColor='F7F3F7';  <!--the color of the narrowad's background-->
var tixa_nadTitleColor='0000ff'; <!--the color of the ad's title-->
var tixa_nadDescColor='000000'; <!--the color of the ad's description-->
var tixa_adType='text'; <!--narrowad type-->
//窄告----横
var tixa_bad_mm_flag=false; <!-- BHVAD flag -->
var tixa_wadRowCount=1; <!--the row count of widead-->
var tixa_wadColumnCount=3; <!--the column count of widead-->
var tixa_wadHeight=85; <!--total height of widead-->
var tixa_wadWidth=525; <!--total width of widead-->
var tixa_wadBorderColor='000000'; <!--the color of the widead's border-->
var tixa_wadBgColor='FFFFFF'; <!--the color of the widead's background-->
var tixa_wadTitleColor='0000ff'; <!--the color of the ad's title-->
var tixa_wadDescColor='034500'; <!--the color of the ad's description-->
var tixa_adType='text'; <!--widead type-->
