function viewBigImage(href, path, width, height){
FLS=window.open(path+"view_big_image.php?img="+href, 'viewImage', "width="+width+", height="+height+" scrollbars=no , resizable=no"); 
FLS.focus();
return false;
}

function sendArchiveNewsForm(form, host){
	var m = document.getElementById('month_archive_field');
	var y = document.getElementById('year_archive_field');
	var url = host+'news/'+y.options[y.selectedIndex].value+'-'+m.options[m.selectedIndex].value;
	location.href = url;
	return false;
}

