
// ------------------------------------------------------------


tab_table_width = 568; 
first_tab_line_length = 18;
tab_line_length_between_buttons = 3;


// tab table HTML - start table

tab_table_start = new String();

tab_table_start += "<table border='0' cellpadding='0' cellspacing='0' width='583'>";
tab_table_start += "<tr>";


// ------------------------------------------------------------

// tabs - HTML

PSP_tabs = new tab_collection();

// new tab(tab_name, tab_HTML, tab_width)

// use only six tabs per page even though seven are listed; if you need more than six, use the PSP_dbl_tabs.js file instead


// overview
PSP_tabs.add_tab(
new tab('overview', "<td background='/products/pix/tab_spacer.gif'><img src='/products/pix/tab_spacer.gif' width='14' height='23' border='0' /><a href='%__URL__%'><img src='/products/pix/tab_overview%__STATE__%_txt.gif' width='70' height='23' border='0' alt='Overview' /></a>", 70 ) 
);


// specs
PSP_tabs.add_tab(
new tab('specs', "<a href='%__URL__%'><img src='/products/pix/tab_specifications%__STATE__%_txt.gif' width='92' height='23' border='0' alt='Specifications' /></a>", 92 ) 
);

// techdocs
PSP_tabs.add_tab(
new tab('techdocs', "<a href='%__URL__%'><img src='/products/pix/tab_techdocs%__STATE__%_txt.gif' width='128' height='23' border='0' alt='Technical Documents' /></a>", 128 ) 
);

// support
PSP_tabs.add_tab(
new tab('support', "<a href='%__URL__%'><img src='/products/pix/tab_support%__STATE__%_txt.gif' width='64' height='23' border='0' alt='Support' /></a>", 64 ) 
);

// tools
PSP_tabs.add_tab(
new tab('tools', "<a href='%__URL__%'><img src='/products/pix/tab_toolssoftware%__STATE__%_txt.gif' width='108' height='23' border='0' alt='Tools & Software' /></a>", 108 ) 
);

// solutions
PSP_tabs.add_tab(
new tab('solutions', "<a href='%__URL__%'><img src='/products/pix/tab_solutions%__STATE__%_txt.gif' width='68' height='23' border='0' alt='Solutions' /></a>", 68 ) 
);

// where to buy
PSP_tabs.add_tab(
new tab('buy', "<a href='%__URL__%'><img src='/products/pix/tab_wheretoby%__STATE__%_txt.gif' width='92' height='23' border='0' alt='Where to Buy' /></a></td>", 92 ) 
);

// ------------------------------------------------------------

// tab table HTML - end table

tab_table_end = new String();

tab_table_end += "</tr>";
tab_table_end += "<tr><td><div class='space20px'>&nbsp;</div><br /></td></tr>";
tab_table_end += "</table>";

// ------------------------------------------------------------

// tab line HTML

tab_line_HTML = "";


