var imgNum = 0; function makeTable(line) { var SolarTable = ''; SolarTable += ''; SolarTable += ''; SolarTable +='
'; SolarTable += ' 
' + Solar[line].title + '   Details
'; // name of product SolarTable += '
'; // space between name & text SolarTable += Solar[line].text; // product description SolarTable += '
'; return SolarTable; } var activeNavigation = null; var activeProduct = null; var timeoutId = 0; var currentSection = ""; function showTable(idName) { var element = ''; if (activeProduct != null){ element = returnDhtmlFeature(activeProduct); if (element) { element.visibility = changeElementVisibility(activeProduct, 'disable'); } } if (validateArg(idName)) { activeProduct = idName; element = returnDhtmlFeature(activeProduct); if (element) { element.visibility = changeElementVisibility(activeProduct, 'enable'); } } } function returnDhtmlFeature(arg) { var feature = null; if (document.all) { // IE 4/5 feature = document.all(arg).style; } else if (document.layers) { // N4 feature = document.layers[arg]; } else if (document.getElementById) { // NS feature = document.getElementById(arg).style; } return feature; } function changeElementVisibility(idName, state) { // change visibility of passed element var changeVisibilityTo = ""; if (document.all || document.getElementById) { // IE & NS if (state == "enable" ) changeVisibilityTo = "visible"; else changeVisibilityTo = "hidden"; } else if (document.layers) { // N4 if (state == "enable") changeVisibilityTo = "show"; else changeVisibilityTo = "hide"; } return changeVisibilityTo; } function validateArg(arg) { // get boolean values for function arguments if ((arg == "undefined") || (arg == null)) return false; else return true; } function SolarLine(title, url, text) { this.title = title; this.url = url; this.text = text; } var Solar = new Object(); Solar.objNames = ["ros", "sks" ,"sus","trs" ]; Solar.ros = new SolarLine( "Rollstar™ ", "", "
A Rollstar™ shade employs roll-shade technology to cover vertical windows. The fabric rolls around a roller tube when raised, and the shade is finished at the bottom with a neat bottom rail that has molded end caps. It is a simple and elegant product.
A wide selection of options, including headboxes, fascias, and motorized lifting systems, help ensure an efficient yet aesthetic solution to solar shading needs for vertical windows.
" ); Solar.sks = new SolarLine( "Skystar™ ", "", "
Skystar™ is a range of fabric deployment systems designed to be used in situations where it is necessary to cover overhead windows, such as skylights, which do not have sufficient slope to be able to use gravity as an operating power source.
There are two main types of Skystar fabric-deployment systems-the Skystar 600 system, which is a roll shade system, and the Skystar 701 systems, which are folding shade systems.
" ); Solar.sus = new SolarLine( "Sunstar™ ", "", "
A Sunstar™ shade is a folding shade made with solar fabric. This style employs classic Roman shade technology to cover vertical windows.
Sunstar folding shades combine the fine quality of Castec's Roman shades with the privacy and sun protection of solar fabrics.
" ); Solar.trs = new SolarLine( "Trackstar™ ", "", "
Trackstar™ is a folding shade system used to cover non-vertical sloped and curved glass surfaces such as those found in solariums, greenhouses, and barrel-dome glass windows. The fabric is guided by a series of carriers that travel smoothly along tracks at either side of the shade.
" );