function voh_print2() {
	c_vin = Cookie.get('login_name')
	if ( !c_vin ) {
		var cstr='<table width="228">'+
	            '<tr><td>Felhasználónév:</td><td><input type="text" name="clilog" size="15" maxlength="22" id="txt_login"></td></tr>'+
	            '<tr><td>Jelszó:</td><td><input type="password" name="clikey" size="15"></td></tr>'+
	            '<tr><td colspan="2"><input type="submit" value="Belépés"></td></tr></table>'
	            			+ '<div class="menuhr2"></div>'
			+ '<div><a href="/user/mod/index.php">Regisztrálja magát itt!</a></div>'
	    	+ '<div style="margin-top:5px; margin-bottom: 5px;">Elfelejtett <a href="/password/send.php">jelszó</a>, <a href="/password/username.php">felhasználónév</a>.</div>';
	} else {
		cstr = Translation[15]+' ' + (c_vin.replace(/\+/g, ' ').replace(/\[PLUS\]/g,'+')) + '!\n'
			+ '<a href="/misc/endsession.php">'+Translation[17]+'</a>&nbsp;\n';
	}
	return cstr;
}