//<![CDATA[

var tabPane;

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

		switch ( sName ) {

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

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

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

			case "tab4":
				tabPane.setSelectedIndex( 3 );
				break;

			case "tab5":
				tabPane.setSelectedIndex( 4 );
				break;

		}
	}
}

// help tips
htDom = "Document Object Model 1 is a standard developed by the W3C.<br />" +
		"<a href=\"http://www.w3.org/DOM/\" target=\"_blank\">http://www.w3.org/DOM/</a>";
