/* * BS: 2005.11 * * If you're updating link/picture pairs, you'll need to update this file * and random_ad.php to change the initial item. Add a triplet to the end * of the variables here: * Picture * Caption * HrefLinks * with the proper variable. If you have no link, you still need to add * a value in HrefLinks, just make it an empty string. */ // Popup Window Funtion var win= null; function NewWindow(mypage,myname,w,h,scroll){ var winl = (screen.width-w)/2; var wint = (screen.height-h)/2; var settings ='height='+h+','; settings +='width='+w+','; settings +='top='+wint+','; settings +='left='+winl+','; settings +='scrollbars='+scroll+','; settings +='resizable=yes'; win=window.open(mypage,myname,settings); if(parseInt(navigator.appVersion) >= 4){win.window.focus();} } // (C) 2002 www.CodeLifter.com // http://www.codelifter.com // Free for all users, but leave in this header. /* BS -> Added this for JS random sorting of an array */ function randomOrderFunc(a, b){ return (Math.round(Math.random())-0.5); } // ============================== // Set the following variables... // ============================== // Set the slideshow speed (in milliseconds) var SlideShowSpeed = 10000; // Set the duration of crossfade (in seconds) var CrossFadeDuration = 3; var Picture = new Array(); // don't change this var Caption = new Array(); // don't change this var HrefLinks = new Array(); // don't change this var Order = new Array(); // don't change this Picture[0] = 'http://www.austinpmi.org/banner_ads/1173762005_speakersneeded.jpg'; HrefLinks[0] = 'http://www.austinpmi.org/speakers-needed.php'; Caption[0] = ''; Picture[1] = 'http://www.austinpmi.org/banner_ads/1173762164_greendot_bluedot.jpg'; HrefLinks[1] = 'http://www.austinpmi.org/job-opportunities.php'; Caption[1] = ''; Picture[2] = 'http://www.austinpmi.org/banner_ads/1206362013_flmci_austin_pmi_ad_137_x_226.jpg'; HrefLinks[2] = 'http://www.flmconsulting.com/index.asp'; Caption[2] = ''; Picture[3] = 'http://www.austinpmi.org/banner_ads/1268064039_2010springseminarwebad.jpg'; HrefLinks[3] = 'http://www.austinpmi.org/events.php?id=182'; Caption[3] = ''; Picture[4] = 'http://www.austinpmi.org/banner_ads/1263782602_2010leadconfad.jpg'; HrefLinks[4] = 'http://www.austinpmi.org/2010-leadership-conference.php'; Caption[4] = ''; Picture[5] = 'http://www.austinpmi.org/banner_ads/1248805983_pmmentors_webad.jpg'; HrefLinks[5] = 'http://www.pmmentors.com'; Caption[5] = ''; // Specify the image files... // To add more images, just continue // the pattern, adding to the array below. // To use fewer images, remove lines // starting at the end of the Picture array. // Caution: The number of Pictures *must* // equal the number of Captions! //Picture[0] = './images/ad/alp-ad.gif'; //Picture[1] = './images/ad/allied-ad.gif'; //Picture[2] = './images/ad/bcs-ad.gif'; //Picture[3] = './images/ad/conexbuff2.gif'; //Picture[4] = './images/ad/ConSolAd.gif'; //Picture[5] = './images/ad/frey-ad.gif'; //Picture[6] = './images/ad/GoMac.gif'; //Picture[7] = './images/ad/greslaw.gif'; //Picture[8] = './images/ad/kelley-ad.gif'; //Picture[9] = './images/ad/lvbw_banner.gif'; //Picture[10] = './images/ad/mollenberg-ad.gif'; //Picture[11] = './images/ad/oneida_banner.gif'; //Picture[12] = './images/ad/slc-ad.gif'; //Picture[13] = './images/ad/specialty_stainless3.gif'; //Picture[14] = './images/ad/wsa-ad.gif'; // Specify the Captions... // To add more captions, just continue // the pattern, adding to the array below. // To use fewer captions, remove lines // starting at the end of the Caption array. // Caution: The number of Captions *must* // equal the number of Pictures! //Caption[0] = ""; //Caption[1] = ""; //Caption[2] = ""; //Caption[3] = ""; //Caption[4] = ""; //Caption[5] = ""; //Caption[6] = ""; //Caption[7] = ""; //Caption[8] = ""; //Caption[9] = ""; //Caption[10] = ""; //Caption[11] = ""; //Caption[12] = ""; //Caption[13] = ""; //Caption[14] = ""; // Specify the Links... // To add more links, just continue // the pattern, adding to the array below. // To use fewer links, remove lines // starting at the end of the links array. /* * Caution: The number of Captions *must* * equal the number of Pictures and Captions! * but if you leave any link as an empty-string, * it will remove the href so that there is no link. */ //HrefLinks[0] = "http://www.alpsteel.com/"; //HrefLinks[1] = ""; //HrefLinks[2] = "http://www.bcsco.com/index_flash.asp"; //HrefLinks[3] = "http://www.conexbuff.com/join_construction_exchange.php"; //HrefLinks[4] = "http://www.constructive-solutions.com/"; //HrefLinks[5] = "http://www.frey-electric.com/"; //HrefLinks[6] = "http://www.goergenmackwirth.com/"; //HrefLinks[7] = "http://www.greslaw.com/"; //HrefLinks[8] = "http://www.rekelley.com/"; //HrefLinks[9] = "http://www.lvbwcpa.com/"; //HrefLinks[10] = "http://www.mollenbergbetz.com/"; //HrefLinks[11] = "http://www.oneidagroup.com"; //HrefLinks[12] = "http://www.slcenvironmental.com/"; //HrefLinks[13] = "http://specialtystainless.com/"; //HrefLinks[14] = ""; /* BS:2005.11 To randomly order the images. */ for(var i=0; i (pss)){ jss=0; } tss = setTimeout('runSlideShow()', SlideShowSpeed); }