//specify interval between slide (in mili seconds)
var slidespeed=4000
//specify images
var slideimages=new Array("images/banners/0Percent2008Banner.jpg","images/banners/SimulationUpgradeBanner.jpg","images/InspectionXpert/InspectionXpertBanner.jpg")
//specify corresponding links
var slidelinks=new Array("http://www.gxsc.com/promotion_ZeroPercent.html","http://www.gxsc.com/products_simulation_requestinfo.html","http://www.gxsc.com/products_InspectionXpert_pressrelease.html")
var imageholder=new Array()  
var ie55=window.createPopup
for (i=0;i<slideimages.length;i++){
imageholder[i]=new Image()
imageholder[i].src=slideimages[i] 
}

function gotoshow(){
window.location=slidelinks[whichlink]
}

function NewWindow(mypage, myname, w, h, scroll) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable'
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}
