<%
int index = 0;
String type = (String) session.getAttribute("selectedType");
if (type != null){
if (type.equals("desktop")){
index = 0;
}
else if (type.equals("server")){
index = 1;
}
else if (type.equals("vm")){
index = 2;
}
else if (type.equals("net")){
index = 3;
}
else if (type.equals("other")){
index = 4;
}
else {
index = 5;
}
}
%>