function getRootPath(){	
	var path = ""
	if (position == null) position = 1
	for (var i = 1; i <= position; i++){
		path = "../" + path
	}
	return path	
}


function getHtmlPath(){	
	var path = getRootPath() + "html/"
	return path	
}


function getPdfPath(){	
	var path = getRootPath() + "pdf/"
	return path	
}


function getImagePath(){	
	var path = getRootPath() + "images/"
	return path	
}


function getIconPath(){	
	var path = getRootPath() + "icons/"
	return path	
}