﻿function getContent(){
	var weatherUrl = "weather.asp";
	var adUrl = "showad.htm";

	window.frames["showweatherf"].location = weatherUrl;
	window.frames["showad"].location = adUrl;
}

function getNews(){
	//var NewsUrl = "http://www.cctv.com/homepage/46/index.shtml?temp="+Math.random();
	var NewsUrl = "http://news.sina.com.cn/o/allnews/input/index.html?temp="+Math.random();
	window.frames["scrollnews"].location = NewsUrl;
}

//查找网页内宽度太大的图片进行缩放以及PNG纠正
function ReImgSize(){
  for (i=0;i<document.images.length;i++)
   {
   if (document.all){
	if (document.images[i].width>500)
	 {
		document.images[i].width = "500";
		document.images[i].style.border = '0px';
		document.images[i].outerHTML = '<a href="'+document.images[i].src+'" target="_blank" title="在新窗口打开图片">'+document.images[i].outerHTML+'</a>';
  	 }
   }
  else{
	if (document.images[i].width>400) {
		document.images[i].title="在新窗口打开图片"
		document.images[i].style.cursor="pointer"
		document.images[i].onclick=function(e){window.open(this.src)}
	}
  }
  }
}

//图片大小自适应
function resizepic(thispic,pw)
{
  if(thispic.width>pw) thispic.width=pw;
}

//弹出窗口
function ow(obj,w,h){
	window.open(obj.href,'null','width='+w+',height='+h);
	return false;
}



