function backPage(){
	if ( history.length>1 ){
		//window.location = history.back(1);
		history.back(1);
		return false;
	}
}