function setLanguage(language){
	var exdate=new Date()
	exdate.setDate(exdate.getDate()+365)
	document.cookie="lang" + "=" +language + ";expires=" + exdate.toGMTString();
	window.location = window.location;
}

function bigPhoto(photo){
	var bigPhoto = window.open(photo,'photo',"toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, copyhistory=no, width=900, height=700");
	bigPhoto.focus();
}

