function newexpandingWindow(website,v_width,v_height) 
{
	var heightspeed = 1; // vertical scrolling speed (higher = slower)
	var widthspeed = 5;  // horizontal scrolling speed (higher = slower)
	var leftdist = 0;    // distance to left edge of window
	var topdist = 0;     // distance to top edge of window
	if (document.all) 
	{
		var winwidth = window.screen.availWidth - leftdist;
		var winheight = window.screen.availHeight - topdist;
		var sizer = window.open("","","left=" + leftdist + ",top=" + topdist + ",width=1,height=1,scrollbars=yes,toolbars=no,menubar=no");
		for (sizeheight = 1; sizeheight < v_height; sizeheight += heightspeed) 
		{
			sizer.resizeTo("1", sizeheight);
		}
		for (sizewidth = 1; sizewidth < v_width; sizewidth += widthspeed) 
		{
			sizer.resizeTo(sizewidth, sizeheight);
		}
		sizer.location = website;
	}
	else
		window.location = website;
}

function Show_Date()
{
	tmpDate = new Date();
	date = tmpDate.getDate();
	month= tmpDate.getMonth() + 1 ;
	year= tmpDate.getYear();
	document.write(year);
	document.write("年");
	document.write(month);
	document.write("月");
	document.write(date);
	document.write("日 ");
	
	myArray=new Array(6);
	myArray[0]="星期日"
	myArray[1]="星期一"
	myArray[2]="星期二"
	myArray[3]="星期三"
	myArray[4]="星期四"
	myArray[5]="星期五"
	myArray[6]="星期六"
	weekday=tmpDate.getDay();
	if (weekday==0 | weekday==6)
	{
	document.write(myArray[weekday])
	}
	else
	{document.write(myArray[weekday])
	};
}
