Application/Intended use
Single-sided flexible adhesive tape for producing airtight seals between ISOVER VARIO KM and VARIO KM Duplex UV climate membranes and roof windows, pipes and other building components. The split release strip makes it especially easy to install the tape in corners and difficult-to-access areas.
Also ideally suited for a wide range of bonding jobs, both indoors and outdoors.
Suitable Substrates
PE and PA sheets, aluminium foils, Kraft papers, metals, plastics, hard wood materials (OSB boards, chipboards, etc.).
The substrate must be dry and free of dust and grease.
Material SpecificationMaterial:
| Double-layer structure comprising special mesh reinforced PE sheeting, with a solvent-free, modified acrylate adhesive.
|
Contents/ Packaging:
| |
Width
| 60 mm
|
Length
| 25 m
|
Rolls / Pack
| 10 |
Technical Performance
Temperature Range:
| - 30°C to + 100°C
|
Site Application
Application Temperature:
| From - 10°C upwards |
var reviewPanel = $('div[id$="_productReviewControl__reviewPanel"]');
var refPanel = $('table[id$="_productFamilyDataList"]');
var headerTabs = $('div[id$=specificationsheader]');
var udaPanels = $('div[class$="attributeLabel"]');
$(document).ready(function() {
setUpreferentialPanel();
setUpReviewPanel();
setUpClicks();
showDynamicPanel(0);
});
function showDynamicPanel(panelId) {
//check if the the review panel exists and that the selected panel is the last one
if ($('div[id$="_productReviewControl__reviewPanel"]').length > 0 && panelId == $('a[id$="_Tabs"]').length - 1)
{
$('div[id$="_reviewPanel"]').css("display", "block");
udaPanels.each(
function(idx) {
$(this).css("display", "none");
});
$('table[id$="_productFamilyDataList"]').css("display", "none");
}
//check if the the referential panel exists and that the selected panel is the first one
else if ($('table[id$="_productFamilyDataList"]').length > 0 && panelId == 0)
{
$('table[id$="_productFamilyDataList"]').css("display", "block");
udaPanels.each(
function(idx) {
$(this).css("display", "none");
});
$('div[id$="_reviewPanel"]').css("display", "none");
}
else {
// if there referntials panels are present then the UDA panels will be Offset by 1
var skewdPanel = panelId;
if ($('table[id$="_productFamilyDataList"]').length > 0) {
skewdPanel = skewdPanel - 1;
}
udaPanels.each(
function(idx)
{
if (idx == skewdPanel)
{
$(this).css("display", "block");
if ($('div[id$="_productReviewControl__reviewPanel"]').length > 0) {
$('div[id$="_reviewPanel"]').css("display", "none");
}
if ($('table[id$="_productFamilyDataList"]').length > 0) {
$('table[id$="_productFamilyDataList"]').css("display", "none");
}
}
else
{
$(this).css("display", "none");
if ($('div[id$="_productReviewControl__reviewPanel"]').length > 0) {
$('div[id$="_reviewPanel"]').css("display", "none");
}
if ($('table[id$="_productFamilyDataList"]').length > 0) {
$('table[id$="_productFamilyDataList"]').css("display", "none");
}
}
});
}
setDynamicPanelHeader(panelId);
}
function setDynamicPanelHeader(currentpanel) {
$('a[id$="_Tabs"]').each(
function(idx) {
if (idx == currentpanel) {
$(this).css('background-position', '0 -33px');
$(this).css('color', '#767676');
}
else {
$(this).css('background-position', '');
$(this).css('color', '');
}
});
}
function setUpReviewPanel() {
if ($('div[id$="_productReviewControl__reviewPanel"]').length > 0) {
$('div[id$=specificationsheader]').append('Reviews');
}
}
function setUpreferentialPanel() {
if ($('table[id$="_productFamilyDataList"]').length > 0)
{
$('div[id$=specificationsheader]').prepend('You may also like');
}
}
function setUpClicks() {
$('a[id$="_Tabs"]').each(function(idx) {
$(this).click(function() {
showDynamicPanel(idx);
});
});
}