/*
**     JavaScript Source Code
**     Created by Kalin Ganev
**     <KalinGanev [AT] Gmail (DOT) com>
**     Date Created:  2008-05-02
**     Last Modified: 2010-06-25
*/





function /*boolean*/ gotoPageSearchB (int_idArea, str_langParEffectiveAmp) {
	int_idArea = window.parseInt(int_idArea);
	if (int_idArea > 0) {
		// OK: A valid area ID is passed.
		// Going to "Search" page:
		self.location.href = BASE + '?area_id=' + int_idArea + str_langParEffectiveAmp;
		return true;
	}
	// No city and area are selected.
	return false;
}

