function getFullTime(){
	var nd, mo, y, da;
	nd=new Date();
	mo=nd.getMonth()+1;
	y=nd.getYear();
	if(y<80)y+=2000;
	if(y>=80&y<=138)y+=1900;
	da=nd.getDay();
	document.write(y+"年"+mo+"月"+nd.getDate()+"日 ");
	var wee;
	wee=new Array("星期日","星期一","星期二","星期三","星期四","星期五","星期六");
	document.write(wee[da]);
}
function getWeather(type,w,h){
	switch(type){
		case 1:
		var w=(w!='')?w:117;
		var h=(h!='')?h:37;
		document.write('<iframe src="http://www.7stk.com/1/6/sina.htm" frameborder="0" width="'+w+'" height="'+h+'" marginheight="0" marginwidth="0" scrolling="no"></iframe>');
		break;
		case 2:
		var w=(w!='')?w:190;
		var h=(h!='')?h:30;
		document.write('<iframe src="http://www.7stk.com/1/6/200906.htm" width="'+w+'" height="'+h+'" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" name="I2" align="middle"></iframe>');
		break;
		case 3:
		var w=(w!='')?w:220;
		var h=(h!='')?h:30;
		document.write('<iframe src="http://www.7stk.com/1/6/200907.htm" width="'+w+'" height="'+h+'" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" name="I2" align="middle"></iframe>');
		break;
		default:
		document.write('<iframe src="http://www.7stk.com/1/6/qq.htm" frameborder="0" width="160" height="15" marginheight="0" marginwidth="0" scrolling="no"></iframe>')
		break;
	}	
}
