function getPage(code) {
	if (code == 'films') window.location="films.php";
	else if (code == 'currentnews') window.location="activities.php";
	else if (code == 'activities') window.location="activities.php";
	else if (code == 'company') window.location="company.php";
	else if (code == 'partners') window.location="partners.php";
	else if (code == 'personnel') window.location="key_personnel.php";
	else if (code == 'client') window.location="client_space.php";
	else if (code == 'contact') window.location="contact_us.php";
	else window.location="index.php";
}

