var tabPane;

function showArticleTab( sName ) {
if (typeof tabPane != "undefined" ) {

switch ( sName ) {

case "blitz":
tabPane.setSelectedIndex( 0 );
break;


case "print":
tabPane.setSelectedIndex( 1 );
break;

case "web":
tabPane.setSelectedIndex( 2 );
break;

case "seo":
tabPane.setSelectedIndex( 3 );
break;
}
}
}