/*
 * 2008, 2009 (c) Michal Kevicky, kevicky@mjch.eu / michal.kevicky@commercial.ksp.sk / kevicky@gmail.com
 * All rights reserved
 * -----
 * Licensed copy for purposes of website "www.tamex.sk" (and related development version of site).
 * Any other use is not permitted without agreement of author. 
 */

function submitSearchByTags( lang_code, page_num ) {
	var suffix = '';
	var i = 0;
	
	for (i = 0; i < tagListIDs.length; i++) {
		if (oid('tag_id_' + tagListIDs[i]).checked) {
			if (suffix!='') suffix = suffix + ',';			
			suffix = suffix + oidv('tag_id_' + tagListIDs[i] + '_url');
		}
	}
	document.location.href = '/' + lang_code + '/byTag/' + suffix + '/' + page_num;
}
