
var shortcutQs = new Array();

shortcutQs[1] = 'level1=1&level2=0';
shortcutQs[2] = 'level1=2&level2=0';
shortcutQs[3] = 'level1=3&level2=0';
shortcutQs[4] = 'level1=4&level2=0';
shortcutQs[5] = 'level1=5&level2=0';
shortcutQs[6] = 'level1=6&level2=0';
shortcutQs[7] = 'level1=8&level2=0';
shortcutQs[8] = 'level1=10&level2=0';
shortcutQs[9] = 'level1=13&level2=0';
shortcutQs[10] = 'level1=15&level2=0';


function changePageShortcut(select, lang)
{
	var target = select.value;
	if(shortcutQs[target])
		window.location.search = '?'+shortcutQs[target]+'&lang='+lang;
	else
		window.location.search = '?lang='+lang;
}


