/*
$(function(){ $('#content_all').equalHeights(); });
*/


function equalHeight(group) {
	tallest = 0;
	group.each(function() {
		thisHeight = $(this).height();
		if(thisHeight > tallest) {
			tallest = thisHeight;
		}
	});
	group.height(tallest);
}
$(document).ready(function() {
	equalHeight($(".lang"));
});

function openPrintWindow(id) {
	vHWin = 
window.open(document.getElementById(id).href,'printWindow','status=0,menubar=1,toolbar=0,resizeable=0,locationbar=0,scrollbars=1,width=480,height=500');
	return vHWin;
}



