//print date//
function printdate(){
	var months=new Array(13);
	months[1]="Jan";
	months[2]="Feb";
	months[3]="Mar";
	months[4]="Apr";
	months[5]="May";
	months[6]="Jun";
	months[7]="Jul";
	months[8]="Aug";
	months[9]="Sep";
	months[10]="Oct";
	months[11]="Nov";
	months[12]="Dec";
	var time=new Date();
	var year=time.getYear()
	if (year < 2000) year = year + 1900;
	printdate=time.getDate()+' '+months[time.getMonth() + 1]+' '+year;
	return printdate;
}

function changelang(targetlang){
	var tempURL=document.location.href;
	if (tempURL.match('.html')){
		templength=(tempURL.length-tempURL.lastIndexOf('/')-1)*-1;
		tempURL=tempURL.slice(0,templength);
	}
	//document.location.href=tempURL.replace('/chi/',targetlang);//
}

function popwin(url){
	window.open(url,'newwin');
}

function OpenWin(name,wwidth,wheight) {
	win=window.open(name,"message","top=10,left=10,scrollbars=no,location=no,memubar=no,directories=no,toolbar=no,width="+wwidth+",height="+wheight+"");
	if (win==null) win.creator=self;
		win.focus();
	}


function docDownload(url){
	window.open(url, 'downloadwin');
}




//onload = OpenWin('popup.html',300,350);
