// JavaScript Document
function navigateFrom(page)						
{
	if(page==2)
	{
		document.location = "kat_II.html";
	}
	if(page==3)
	{
		document.location = "kat_III.html";
	}
	if(page==4)
	{
		document.location = "kat_IV.html";
	}	
	if(page==5)
	{
		document.location = "kat_V.html";
	}
	if(page==6)
	{
		document.location = "kat_VI.html";
	}
	if(page==7)
	{
		document.location = "kat_VII.html";
	}					
}