<!--
function gotoSection(loc) {
	switch(loc) {
	  case "home":
	    window.parent.mainFrame.location = "main_home.htm";
		window.parent.bottomFrame.location = "frame_bottom_home.htm";
		break;
	  case "profile":
	    window.parent.mainFrame.location = "main_profile.htm";
		window.parent.bottomFrame.location = "frame_bottom_profile.htm";
		break;
	  case "products":
		window.parent.mainFrame.location = "main_products.htm";
		window.parent.bottomFrame.location = "frame_bottom_products.htm";
		break;
	  case "services":
	    window.parent.mainFrame.location = "main_services.htm";
		window.parent.bottomFrame.location = "frame_bottom_services.htm";
		break;
	  case "contact":
	    window.parent.mainFrame.location = "main_contact.htm";
		window.parent.bottomFrame.location = "frame_bottom_contact.htm";
		break;
	  case "news":
	    window.parent.mainFrame.location = "main_news.asp";
		window.parent.bottomFrame.location = "frame_bottom_news.htm";
		break;
	  case "partners":
	    window.parent.mainFrame.location = "main_partners.htm";
		window.parent.bottomFrame.location = "frame_bottom_partners.htm";
		break;
	}
}

function gotoSection_1(loc) {
	switch(loc) {
	  case "home":
	    window.parent.mainFrame.location = "main_home.htm";
		window.parent.bottomFrame.location = "frame_bottom_home_1.htm";
		break;
	  case "profile":
	    window.parent.mainFrame.location = "main_profile_1.htm";
		window.parent.bottomFrame.location = "frame_bottom_profile_1.htm";
		break;
	  case "products":
		window.parent.mainFrame.location = "main_products_1.htm";
		window.parent.bottomFrame.location = "frame_bottom_products_1.htm";
		break;
	  case "services":
	    window.parent.mainFrame.location = "main_services_1.htm";
		window.parent.bottomFrame.location = "frame_bottom_services_1.htm";
		break;
	  case "contact":
	    window.parent.mainFrame.location = "main_contact_1.htm";
		window.parent.bottomFrame.location = "frame_bottom_contact_1.htm";
		break;
	   case "news":
	    window.parent.mainFrame.location = "main_news_1.asp";
		window.parent.bottomFrame.location = "frame_bottom_news_1.htm";
		break;
	  case "partners":
	    window.parent.mainFrame.location = "main_partners_1.htm";
		window.parent.bottomFrame.location = "frame_bottom_partners_1.htm";
		break;
	}
}
// -->