<!-- /isv/pw_solutions/specialties.js -->

/*** specialty_selection ***/

function specialty_selection(specialty_selected)
{

var i = 0;
var specialty_number = 5;
var specialty_table = new Array(specialty_number);

specialty_table[0] = new Array("continuity", "Business Continuity", "http://www.ibm.com/isv/pw_solutions/bus_continuity/index.html");
specialty_table[1] = new Array("dynamici", "Dynamic Infrastructure", "http://www.ibm.com/isv/pw_solutions/di/index.html");
specialty_table[2] = new Array("iod", "Information on Demand", "http://www.ibm.com/isv/pw_solutions/InfoOnDemand/index.html");
specialty_table[3] = new Array("saas", "SaaS", "http://www.ibm.com/isv/marketing/saas/index.html");
specialty_table[4] = new Array("soa", "SOA", "http://www.ibm.com/isv/soa/index.html");

document.writeln("<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"150\">");
document.writeln("<tr>");
document.writeln("<td class=\"v14-header-4-small\">PartnerWorld specialties</td>");
document.writeln("</tr>");

document.writeln("<tr>");
document.writeln("<td>");
document.writeln("<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"v14-gray-table-border\">");
document.writeln("<tr>");
document.writeln("<td valign=\"top\" class=\"no-padding\">");
document.writeln("<p class=\"small\">Learn more about other PartnerWorld specialties.</p>");
document.writeln("</td>");
document.writeln("</tr>");
document.writeln("<tr>");
document.writeln("<td>");

document.writeln("<form id=\"ind_specialty\" onsubmit=\"return ibmCommonDropdown(this)\" action=\"//www.ibm.com/links\" method=\"get\">");
document.writeln("<table border=\"0\" cellpadding=\"1\" cellspacing=\"0\">");
document.writeln("<tr>");
document.writeln("<td valign=\"middle\">");
document.writeln("<label for=\"ind_specialty\" accesskey=\"i \" title=\"Specialties\">");

document.writeln("<select onchange=\"ibmCommonDropdown(this.form)\" name=\"url\" style=\"font-size: 10px; width: 110px\" id=\"ind_specialty\">");

//<option value="">Select one</option>

for (i=0;i<specialty_number;i=i+1) 
{
//alert(i + " " + specialty_table[i][0] + " " + specialty_table[i][1] + " " + specialty_table[i][2]);
document.write("<option value=\"");
document.write(specialty_table[i][2]+"\"");
if (specialty_selected==specialty_table[i][0]) {
	document.write(" selected=\"selected\"");
}
document.writeln(">" + specialty_table[i][1] + "</option>");
}

document.writeln("</select>");
document.writeln("</label>");
document.writeln("</td>");
document.writeln("<td width=\"21\"><input type=\"image\" src=\"/isv/g/ibm/go.gif\" width=\"21\" height=\"21\" hspace=\"0\" vspace=\"1\" border=\"0\" alt=\"Go\" /></td>");
document.writeln("</tr>");
document.writeln("</table>");
document.writeln("</form>");
document.writeln("</td>");
document.writeln("</tr>");

document.writeln("</table>");
document.writeln("</td>");
document.writeln("</tr>");

document.writeln("<tr>");
document.writeln("<td width=\"150\" valign=\"top\"><img src=\"http://www.ibm.com/i/c.gif\" width=\"1\" height=\"2\" alt=\"\"/></td>");
document.writeln("</tr>");

document.writeln("</table>");

return;
}

