
var message="";

function clickIE() {if (document.all) {(message);return false;}}
function clickNS(e) {if
(document.layers||(document.getElementById&&!document.all)) {
if (e.which==2||e.which==3) {(message);return false;}}}
if (document.layers)
{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}

document.oncontextmenu=new Function("return false")



// (C) 2000 www.CodeLifter.com
// http://www.codelifter.com
// Free for all users, but leave in this  header
// NS4-6,IE4-6
// Fade effect only in IE; degrades gracefully

// =======================================
// set the following variables
// =======================================

// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 4000

// Duration of crossfade (seconds)
var crossFadeDuration = 4

// Specify the image files
var Pic = new Array() // don't touch this
// to add more images, just continue
// the pattern, adding to the array below

Pic[0] = 'Promo/P-1.png'
Pic[1] = 'Promo/P-2.png'
Pic[2] = 'Promo/P-3.png'
Pic[3] = 'Promo/P-4.png'
Pic[4] = 'Promo/P-5.png'

// =======================================
// do not edit anything below this line
// =======================================

var t
var j = 0
var p = Pic.length

var preLoad = new Array()
for (i = 0; i < p; i++){
   preLoad[i] = new Image()
   preLoad[i].src = Pic[i]
}

function runNewProducts(){
   if (document.all){
      document.images.NewProducts.style.filter="blendTrans(duration=2)"
      document.images.NewProducts.style.filter="blendTrans(duration=crossFadeDuration)"
      document.images.NewProducts.filters.blendTrans.Apply()      
   }
   document.images.NewProducts.src = preLoad[j].src
   if (document.all){
      document.images.NewProducts.filters.blendTrans.Play()
   }
   j = j + 1
   if (j > (p-1)) j=0
   t = setTimeout('runNewProducts()', slideShowSpeed)
}

// (C) 2000 www.CodeLifter.com
// http://www.codelifter.com
// Free for all users, but leave in this  header
// NS4-6,IE4-6
// Fade effect only in IE; degrades gracefully

// =======================================
// set the following variables
// =======================================

// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 3000

// Duration of crossfade (seconds)
var crossFadeDuration = 4

// Specify the image files
var Pic2 = new Array() // don't touch this
// to add more images, just continue
// the pattern, adding to the array below


Pic2[0] = 'Products/AMSS/AMSS1006.png'
Pic2[1] = 'Products/AMSS/AMSS1101.png'
Pic2[2] = 'Products/AMSS/AMSS1102.png'
Pic2[3] = 'Products/AMSS/AMSS1105.png'
Pic2[4] = 'Products/AMSS/AMSS1202.png'
Pic2[5] = 'Products/AMSS/AMSS1207.png'
Pic2[6] = 'Products/AMSS/AMSS1251.png'
Pic2[7] = 'Products/AMSS/AMSS1252.png'
Pic2[8] = 'Products/AMSS/AMSS1253.png'
Pic2[9] = 'Products/AMSS/AMSS1005.png'

// =======================================
// do not edit anything below this line
// =======================================

var t2
var j2 = 0
var p2 = Pic2.length

var preLoad2 = new Array()
for (i = 0; i < p2; i++){
   preLoad2[i] = new Image()
   preLoad2[i].src = Pic2[i]
}

function runNewProducts2(){
   if (document.all){
      document.images.NewProducts2.style.filter="blendTrans(duration=2)"
      document.images.NewProducts2.style.filter="blendTrans(duration=crossFadeDuration)"
      document.images.NewProducts2.filters.blendTrans.Apply()      
   }
   document.images.NewProducts2.src = preLoad2[j].src
   if (document.all){
      document.images.NewProducts2.filters.blendTrans.Play()
   }
   j2 = j2 + 1
   if (j2 > (p2-1)) j2=0
   t2 = setTimeout('runNewProducts2()', slideShowSpeed)
}