function init(){
}
function showPopup(){
	if(show_popup == 1){
		window.open(popup_link, 'home_popup', 'width='+ popup_x +',height='+ popup_y +',menubar=0,toolbar=0,scrollbars=no,resizable=yes,status=no');
	}
}

function changeLocale(url){
	window.location.href = url;
}

function openPrint(){
	printContent = '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">';
	printContent += '<html>';
	printContent += '<head>';
	printContent += document.getElementsByTagName('head')[0].innerHTML;
	printContent += '</head>';
	printContent += '<body style="width:450px;text-align:left;">';
	printContent += document.getElementById('pagecont').innerHTML;
	printContent += '</body>';
	printContent += '</html>';
	t_p_win = window.open("","printwindow","width=450,height=500,menubar=1,toolbar=1,scrollbars=1,resizable=1,");
	t_p_win.document.open();
	t_p_win.document.write(printContent);
	t_p_win.document.close();
}
