// Global constants
var replacementChar = /%s/
var timeoutID
var playing

// Global variables
var outputTitle
var outputSubTitle
var outputURL
var imagesOnAPage
var index
var imgset
var imgsize
var tnsize
var intimgsize
var inttnsize
var selectedImage


function parseCommandLine() {
	index = 0
	playing = 0
	imgset = 0
	imagesOnAPage = 32
	intimgsize = 0
	inttnsize = 0
	imgsize = imgmedium
	tnsize = imgtn
	selectedImage=-1
	
	if (location.href.indexOf("?") != -1) {
	    // Parse any command line arguments
	    urlQuery = location.href.split("?")

	    urlTerms = urlQuery[1].split(",")
	    if (urlTerms[0] != null) {
		    index = parseInt(urlTerms[0])
	    }

	    if (urlTerms[1] != null) {
		    playing = parseInt(urlTerms[1])
	    }
    	
	    if (urlTerms[2] != null) {
	        imgset = parseInt(urlTerms[2])
	    }
	    
	    if (urlTerms[3] != null) {
	        imagesOnAPage = parseInt(urlTerms[3])
	    }

	    if ((urlTerms[4] != null) && (urlTerms[4] == 1)) {
	        intimgsize = 1
	        imgsize = imgmedium
	    }

	    if ((urlTerms[5] != null) && (urlTerms[5] == 1)) {
	        inttnsize = 1
	        tnsize = imgtn
	    }
	    
	    if (urlTerms[6] != null && urlTerms[6] >= 0) {
	        selectedImage = parseInt(urlTerms[6])
	    }
	    

	}
    if (imgset == 1)
	    imgList = imgKidBroadcasters
	    else
    if (imgset == 2)
	    imgList = imgKidRecent
	    else
    if (imgset == 3)
	    imgList = imgKidStaffnBoard
	    else
    if (imgset == 4)
	    imgList = imgKidArchive
	    else  	
  	    imgList = null
}

function showPage() {
      parseCommandLine()
      if ((selectedImage >= 0) && (selectedImage < imgList.length))
        index = -1
      var page = index * imagesOnAPage
      
      document.write("<span style='font-family: Arial; font-size: small;'>");
      
      if ((selectedImage >= 0) && (selectedImage < imgList.length))
      {
       document.write ("<span class='burgundytext'><b>");	
       document.write(collectionComment[imgset-1] + "<br><br>");
       document.write ("<span class='bluetext'></b>");	
        if (selectedImage > 0)
            document.write("<A HREF=view_a_photo.php?-1,"+playing+","+imgset+","+imagesOnAPage+","+intimgsize+","+inttnsize+"," + (selectedImage-1) + 
                ">&lt; Previous Image</A>&nbsp&nbsp;")
          else
            document.write("&lt; Previous Image&nbsp&nbsp")

        if (selectedImage < imgList.length -1)
            document.write("<A HREF=view_a_photo.php?-1,"+playing+","+imgset+","+imagesOnAPage+","+intimgsize+","+inttnsize+"," + (selectedImage+1) + 
                ">Next Image &gt;</A>&nbsp&nbsp&nbsp&nbsp")
          else
            document.write("Next Image &gt;&nbsp&nbsp&nbsp&nbsp")
        
    	document.write("<a href=view_photos.php?" + (selectedImage / imagesOnAPage) + 
    			","+playing+","+imgset+","+imagesOnAPage+","+intimgsize+","+inttnsize+",-1></a>Page: ");
    	
    	var pageno = (selectedImage / imagesOnAPage);
        for (var i = 0; i < imgList.length / imagesOnAPage; i++) {
          if (pageno >= i && pageno < (i + 1)) {
          	document.write("<b>");
          }
                document.write("<A HREF=view_photos.php?"+i+","+playing+","+imgset+","+imagesOnAPage+","+intimgsize+","+inttnsize+",-1>" + (i+1) + "</A>&nbsp&nbsp")
          if (pageno >= i && pageno < (i + 1)) {
          	document.write("</b>");
          }
        }
      
        document.write("<a href=view_photos.php?"+pageno+","+playing+","+imgset+","+imagesOnAPage+","+intimgsize+","+inttnsize+",-1>Back to current page</a>");
        var imgDetail = imgList[selectedImage].split("|");
        document.write("<HR>");
        document.write("<IMG SRC=" + imgsize + imgprefix + imgDetail[0] + imgext + "></A><br>");
        if (imgDetail.length > 1 && imgDetail[1] != "") {
        	document.write ("<span class='redtext14'><b>");
          document.write (imgComment[imgDetail[1]] + ".  ");
        }
        if (imgDetail.length == 2) {
        	document.write ("<span class='redtext14'><b>");
        	document.write (imgDetail[1] + ".");
        }	
        if (imgDetail.length == 3) {
        	document.write ("<span class='redtext14'><b>");
        	document.write (imgDetail[2] + ".");
        }	
        if (imgDetail.length == 4) {	
        	document.write ("<span class='redtext14'><b>");
        	document.write (imgDetail[2] + "<br>");
        	document.write ("<span class='maintext'><b>");
        	document.write (imgDetail[3] + ".");
        }
        if (imgDetail.length == 5) {	
        	document.write ("<span class='redtext14'><b>");
        	document.write (imgDetail[2] + "<br>");
        	document.write ("<span class='maintext'><b>");
        	document.write (imgDetail[3] + "<br>");
        	document.write (imgDetail[4] + ".");
        }
        if (imgDetail.length == 6) {	
        	document.write ("<span class='redtext14'><b>");
        	document.write (imgDetail[2] + "<br>");
        	document.write ("<span class='maintext'><b>");
        	document.write (imgDetail[3] + "<br>");
        	document.write (imgDetail[4] + "<br>");
        	document.write (imgDetail[5] + ".");
        }
        if (imgDetail.length == 7) {	
        	document.write ("<span class='redtext14'><b>");
        	document.write (imgDetail[2] + "<br>");
        	document.write ("<span class='maintext'><b>");
        	document.write (imgDetail[3] + "<br>");
        	document.write (imgDetail[4] + "<br>");
        	document.write (imgDetail[5] + "<br>");
        	document.write (imgDetail[6] + ".");
        }
        if (imgDetail.length == 8) {	
        	document.write ("<span class='redtext14'><b>");
        	document.write (imgDetail[2] + "<br>");
        	document.write ("<span class='maintext'><b>");
        	document.write (imgDetail[3] + "<br>");
        	document.write (imgDetail[4] + "<br>");
        	document.write (imgDetail[5] + "<br>");
        	document.write (imgDetail[6] + "<br></b>"); 
        	document.write (imgDetail[7] + ".");
        }
        if (imgDetail.length == 9) {	
        	document.write ("<span class='redtext14'><b>");
        	document.write (imgDetail[2] + "<br>");
        	document.write ("<span class='maintext'><b>");
        	document.write (imgDetail[3] + "<br>");
        	document.write (imgDetail[4] + "<br>");
        	document.write (imgDetail[5] + "<br>");
        	document.write (imgDetail[6] + "<br></b>"); 
        	document.write (imgDetail[7] + "<br>");
        	document.write (imgDetail[8] + ".");
        }


        document.write("</span></b><span class='greentext'>")
        document.write("<br><br>Number " + (selectedImage + 1) + " of " + imgList.length + " in category.");
				document.write("<BR><BR></span><span class='bluetext'>");
        		
        document.write("<hr>Next images in the sequence:<br>");
        for (var i = 0; selectedImage + 1 + i < imgList.length && i < 7; i++) {
    		imgDetail = imgList[selectedImage + 1 + i].split("|");
            document.write("<A HREF=view_a_photo.php?-1,"+playing+","+imgset+","+imagesOnAPage+","+intimgsize+","+inttnsize+"," + (selectedImage + 1 + i) + 
                "><IMG SRC=" + tnsize + imgprefix + imgDetail[0] + imgext + "></A> ")
        }
        document.write("<HR>");
	  } else
	  {
	  document.write ("<span class='burgundytext'><b>");		
	  document.write(collectionComment[imgset-1] + "<br><br>");	
	  document.write ("<span class='bluetext'></b>");	
	  document.write("Page: ");
      for (var i = 0; i < imgList.length / imagesOnAPage; i++) {
        if (index == i) {
            document.write("<B>")
            }
        
        document.write("<A HREF=view_photos.php?"+i+","+playing+","+imgset+","+imagesOnAPage+","+intimgsize+","+inttnsize+",-1>" + (i+1) + "</A>&nbsp&nbsp")

        if (index == i) {
            document.write("</B>")
            }
        }

        document.write("<a href=photosboard.php>Back to Categories page</a><HR>")
        var imgDetail;

        for (var i = 0; (i + page < imgList.length) && (i < imagesOnAPage); i++) {
//          document.write("<A HREF=" + imgsize + imgList[i+page] + imgext + "><IMG SRC=" + tnsize + imgList[i+page] + imgext + "></A>")
    		imgDetail = imgList[i+page].split("|");
            document.write("<A HREF=view_a_photo.php?-1,"+playing+","+imgset+","+imagesOnAPage+","+intimgsize+","+inttnsize+"," + (i+page) + 
                "><IMG SRC=" + tnsize + imgprefix + imgDetail[0] + imgext + "></A> ")
	        }
	  }
      document.write("</span>");
}

var title = "Kidnappers"
var subTitle = ""
var BGCOLOR = "#000000"
var TEXT = "#FFFFFF"
var LINK = "#000000"
var VLINK = "#141414"
var ALINK = "#141414"
var pageFontFamily = "font-family: Arial;"
var pageFontSize = "font-size: medium;"
var thumbFontFamily = "font-family: Arial;"
var thumbFontSize = "font-size: medium;"
var thumbFontColor = "color: #FFFFFF";
var imageFontFamily = "font-family: Arial;"
var imageFontSize = "font-size: medium;"
var imageFontColor = "color: #FFFFFF";
var rows = "84"
var columns = "1"
var imgmedium = "images/photos/medium/"
var imgtn = "images/photos/tn/"
var imgprefix = ""
var imgext = ""


var imglocationsmedium = new Array (
"images/broadcasters/medium",
"images/recent/medium",
"images/staffnboard/medium",
"images/archives/medium");

var imglocationstn = new Array (
"images/broadcasters/tn",
"images/recent/tn/",
"images/staffnboard/tn",
"images/archives/tn/");

var collectionComment = new Array (
"Photo Gallery of Current Broadcasters",
"Recent Events at Radio Kidnappers",
"Staff and Board",
"Archive of Older Events & Non-Current Broadcasters");

var imgComment = new Array (
"Maria", //0
"Williams"  // 1
);

var imgKidBroadcasters = new Array(
"photo_lis1.jpg||TREVOR LANGLEY|Brings us news about the Kiwanis Club of Napier|(4th Tuesday each month, at 12:30pm)",
"photo_mnt1.jpg||SANDY FAIRSERVICE|Relaxes us with a 'Mostly Mantovani' selection|(each Monday at 7:30pm)",
"photo_ccn1.jpg||CHRIS WHITE|Brings us CHRIS'S CORNER|(1st Wednesday each month, at 7:00pm)",
"photo_lwp1.jpg||BEVERLY SHOAF|Shares with us how God can have us 'LIVING WITH PURPOSE'|(each Sunday at 1:30pm)",
"photo_sup2.jpg||MARGUERITE VUJCICH|Goes talking, singing, and surfing, in 'SURF'S UP'|(each Tuesday at 11:05am)",
"photo_tfh1.jpg||SONYA SEDGWICK|Brings us 'TREES FOR HAWKE'S BAY'|(4th Wednesday of the month, 7:00pm)",
"photo_rlr1.jpg||DAVE THE RAVE|Plays an hour of 'Relics And Rarities', 6am Tuesdays",
"photo_wmv4.jpg||KARLA JURCZAKOWSKI|Brings us 'WOMEN'S VOICES' at 1:30pm on Mondays",
"photo_ad1.jpg||SMOOTH GROOVES|Alex (DJ Static) presents the best modern sounds, Thursdays during 'YOUTH ZONE'",
"photo_kue1.jpg||KICK UP THE 80s|Each Tuesday at 2pm, your host Geoff Dorsett plays the best music from the 1980s decade",
"photo_acl1.jpg||A CONSCIOUS LIFE|Marie offers advice on self-awareness and other therapies|(2nd Wednesday of the month, 11:05am)",
"photo_sus1.jpg||SUS'D - SAVE YOUR MONEY, SAVE OUR ENVIRONMENT|Dominic and Angela suggest ways we can all make positive changes|(3rd Tuesday monthly, 4:30pm)",
"photo_mmm1.jpg||MARGARET'S MUSICAL MOMENTS|Margaret plays 2 hours of easy-listening and country music (Wednesdays, 2:05pm)",
"photo_rar1.jpg||RELAX AND REMEMBER|John H relaxes us with all his CD and vinyl memories (Wednesdays, 4:30pm)",
"photo_sin1.jpg||ALAN'S KIWI COUNTRY MUSIC SHOW|Hosted by Alan Hessell (pictured here with Aroha Thompson),|alternate Sundays, 10:00am-noon",
"photo_tth2.jpg||LIONEL|Entertains us with 'THEATRE THEMES' each week, and 'ARTS ON AIR' once a month",
"photo_gtr1.jpg||GEOFF HERBERT|Gets Out Those Old Records each Friday afternoon at 4:30pm",
"photo_stn1.jpg||STARRY NIGHTS|Gary Sparks (Director of the Holt Planetarium) gives us|an in-depth account of likely planetary happenings, on the first Friday each month (4:05pm)",
"photo_egd2.jpg||EARTH GARDENS|Ange & Geoff are your usual hosts on the 2nd Monday each month (7:00pm)",
"photo_mls1.jpg||MULTIPLE SCLEROSIS|Robyn Coyle hosts their monthly programme (3rd Friday)",
"photo_wrf1.jpg||WOMEN'S REFUGE|Brenda from the Napier centre joins us most Thursdays at 11:05am",
"photo_mos1.jpg||RADIO ACTIVE|Some of the Real People From Mosaic, who present their own show |each Wednesday at 6:30pm (except during school-holiday periods)",
"photo_rfc1.jpg||HARRY|Presents 'Reformed Church' - a short devotion every second Sunday at 1pm|(repeated the following Thursday at 5:05pm)",
"photo_ppc1.jpg||FRED TWYFORD|Plays all those Popular Classics for us, each Tuesday (11:30am)",
"photo_i4d1.jpg||INFORMATION 4 DISABILITY|Heather is your host for their monthly programme (3rd Thursday)",
"photo_rdx1.jpg||The team from RED CROSS|update us with their news and current events, once a month (2nd Thursday)",
"photo_ezj1.jpg||JOHN REDMAN|Hosts two hours of relaxing Easy Jazz, on Monday afternoons from 3:05pm",
"photo_bdb2.jpg||BIG DADDY|Brings us his special Breakfast mix, each Friday",
"photo_fos1.jpg||ROBYN & MITCH PARK|Bring us 'Folk On Sunday' each and every week",
"photo_bdb1.jpg||BIG DADDY's BREAKFAST|Rediscover all sorts of long-lost music, plus a Country slot and other goodies and snippets",
"photo_ncw1.jpg||NATIONAL COUNCIL OF WOMEN|Ably hosted by Val [right] and supporters, each month",
"photo_wlm1.jpg||TRENT|Calls himself 'the trentroplegic' but he's still very agile and capable|when it comes to playing us his 'WORLD MUSIC' 30-minute show on Monday nights",
"photo_ebg1.jpg||PETE|Devoted Early-Bird (Gospel) promulgator",
"photo_ppl1.jpg||PATRICK|Mixes business and pleasure - sells houses on-air, in between playing us some very nice classical music",
"photo_czb1.jpg||NORMA|Brings us the best of brass-band music, 'CITIZENS BRASS' every Friday fortnight",
"photo_sws1.jpg||MORRIS J|Ahh, no wonder the ladies love him! ... the master of 'SWING AND SWAY' himself",
"photo_mnm1.jpg||MARGARET|Her weekly programmes of Christian topics and music|('MONDAY MISCELLANY', Mondays at 8pm & repeated Tuesdays at 5pm)|(also 'SONGS FOR SUNDAY', Sundays at 12:30pm & repeated Sundays at 6pm)|are always thought-provoking, interesting, and well-researched",
"photo_aww1.jpg||CATHY (left, shown here with previous host DORIS)|Presents 'A WOMAN'S WORLD' on Mondays at 12:30pm|- proving that a lot happens at the Heretaunga Women's Centre",
"photo_acd1.jpg||HERB P|AT CLOSE OF DAY on Sunday evenings has been Herb's watch since 1995 ... and he does it well",
"photo_cbh1.jpg||HERB B|The Herb we love from 'THE COUNTRY WE LOVE' (Wednesdays) and 'COUNTRY BREAKFAST' (Mondays)",
"photo_kbf1.jpg||GRAY|Host of 'KICK BACK FRIDAY', proving that a disability isn't a barrier to energy and determination",
"photo_tfm1.jpg||GORDON|We say 'THANKS FOR THE MEMORIES' each Thursday ...|they go back to the 1950s when he started out in radio",
"photo_icg1.jpg||CHRIS (Technician)|Trying to keep everything running smoothly.|(On Access Radio??! Now that's a mission)",
"photo_bsg2.jpg|||'Ah, it's moving ... gently does it!' - Gordon, Herb P, and Lionel",
"photo_bsg1.jpg||How many men does it take to push up a fader?|Intense concentration from these five should get the job done!|(Adam, David, Gordon, HerbP [seated], Lionel)"
);

var imgKidRecent = new Array(
"photo_xmas10-1.jpg||XMAS PARTY 2010|The Christmas Party attendees 2010 (Photo #1)",
"photo_xmas10-2.jpg||XMAS PARTY 2010|The Christmas Party attendees 2010 (Photo #2)",
"photo_xmas10-3.jpg||XMAS PARTY 2010|A shot of all those courageous souls who 'dressed up' for the occasion (well done!)",
"photo_xmas10-4.jpg||XMAS PARTY 2010|The Hokey-Tokey was popular ....",
"photo_kue1.jpg||GEOFF DORSETT|UK-based host of 'Kick Up The 80s' called in to see us while on a whistle-stop visit to NZ (Dec 2010)",
"photo_sog11.jpg||MATT LANGLEY & CAITLIN HARNETT|Dropped in to talk about their music and also sang us some songs from their new album|while in Hawke's Bay for a gig (Dec 2010)"
);

var imgKidStaffnBoard = new Array(
"photo_zosg12.jpg||TRUST BOARD 2010|Standing (L to R): Lionel Priest, Fred Twyford, John Redman, Jim Diggle, Roger Sinclair|Seated (L to R): Graeme Richardson (Chairman), Renata Lehmann, Norma Keesing"
);

var imgKidArchive = new Array(
"photo_aad1.jpg||ADOPT A DOG|Trina talked about dog fostering, plus nutrition and behaviour advice|during 2010-2011",
"photo_swi1.jpg||AROHA|Brought us many 'SWEET INSPIRATIONS' and other shows between 2005-2011",
"photo_bth2.jpg||BROTHER RAY|Inspired us on a BREAKTHROUGH each Sunday evening (7pm)",
"photo_wmv3.jpg||MICHELLE PYKE|Brought us 'Womens Voices' during 2006-2010,|and 'Adventurous Discussions' for a while during 2011",
"photo_prg1.jpg||PROBLEM GAMBLING (Te Rangihaeata Oranga Trust)|L to R: Marewa, James, Joy, Paul, Puti|The team joined us on Mondays fortnightly during 2007-2008, and again during 2010-2011",
"photo_msd1.jpg||MINISTRY OF SOCIAL DEVELOPMENT INFORMATION SHOW|Steve Morse (pictured with regular co-host Cliff Church) brought us the fortnightly Thursday morning show, until July 2011",
"photo_fab4.jpg||FOREST & BIRD SOCIETY|Brought to us by David & Vaughan each month, during 2006-2011",
"photo_ath1.jpg||ARTHRITIS NZ|Graham Dearsly & Janice Klinkhamer updated us each month, until March 2011",
"photo_crp1.jpg||HELEN CHARTERS|Brought us 'CREATIVE PEOPLE' and 'HELEN'S INSPIRATIONS' each week, during 2005-2010",
"photo_clc1.jpg||COLLECTORS' CORNER|Keith Richards shared his knowledge of Stamps with us, during 2009-2010",
"photo_yzt1.jpg||TOM on 'Youth Zone'|We heard some great youth tracks during Tom's show on Thursday evenings, during 2010",
"photo_mkw1.jpg||LIAM|Presented MAKING WAVES between 2005-2010 - seeking out HB musicians and getting them on air",
"photo_gl1.jpg||GIL LOUGH|Brought us 'Sex Matters' on behalf of the Family Planning Assn, until July 2010",
"photo_ga2.jpg||GARRETT ASKES|Ensured that we stayed 'Happy, Healthy & Holy' each Monday until June 2010",
"photo_rh1.jpg||RUTH|Presented 'The Rally' (Hastings Riding For The Disabled) until March 2010",
"photo_xmash09_11.jpg||XMAS PARTY 2009|One or two left early, but here's most of the assembled company",
"photo_xmash09_10.jpg||XMAS PARTY 2009|Chairman Graeme Richardson recaps on a good year for Radio Kidnappers",
"photo_xmash09_12.jpg||XMAS PARTY 2009|Supreme-Broadcaster Award: 'Kitchen Spies'|Alison receives the award from David Teesdale",
"photo_xmash09_9.jpg||XMAS PARTY 2009|Listeners'-Choice Award recipient John Redman ('Easy Jazz')",
"photo_xmash09_7.jpg||XMAS PARTY 2009|Most-Improved-Broadcaster Award: Alex Durbin ('Smooth Grooves')",
"photo_xmash09_8.jpg||XMAS PARTY 2009|Best-Youth-Programme Award: Laura & Hannah ('Laura Out Loud')",
"photo_xmash09_4.jpg||XMAS PARTY 2009|Graham Dearsly & Janice Klinkhamer ('ArthritisNZ')",
"photo_xmash09_6.jpg||XMAS PARTY 2009|Gary Sparks ('Starry Nights') with Margaret & Vyron ('M V Golden Kiwis')",
"photo_xmash09_5.jpg||XMAS PARTY 2009|Some of the team from 'Real People From Mosaic'|At right: Justin ('Justin Time') & Kenny ('The Kenny Campbell Country Show')",
"photo_xmash09_3.jpg||XMAS PARTY 2009|Alan Hessell ('Wake Up On Wednesdays' & 'Sweet Inspirations')",
"photo_xmash09_2.jpg||XMAS PARTY 2009|John Redman ('Easy Jazz') with Da ('Sawasdee Thai Community' programme)",
"photo_xmash09_1.jpg||XMAS PARTY 2009|Lionel Priest ('Theatre Themes' & 'Arts On Air') with Lyn & Graeme Richardson",
"photo_crq1.jpg||CROQUET HITS|Presented by Colleen Stephens on the 3rd Friday of each month, during 2008-2009",
"photo_wai1.jpg||BELINDA|Co-hosted the Thursday Dept-of-Work-and-Income programme until 2009",
"photo_ah1.jpg||ADAM|Did Theme-Shows Monday evenings from 10:30pm, and Moonlighting from midnight Tuesdays",
"photo_xmasn07_1.jpg||XMAS PARTY 2007|Napier Studio|Standing (L to R): Gordon H, James [PG], Graham [AR], Deano [DTS], Alex D, John R, Chris [DTS], Paul K, Maria W, Fred T, Puti & Jim [DTS], Val [NCW], Robin [MS], Sue [NCW], Heather [DIT], Pete [Mosaic], David T, Joy [PG], Geoff [EG], Matt [DTS]||Kneeling/Seated (L to R): Tarsh [DTS], Michelle P, Chris / Joy / Daniel [DTS], Christine Scott [HBRC], Nicholas [DTS], Ange [EG], Chris G, Robin Gwynn [Trust]||(AR=ArthritisNZ, DIT=DisabilityInformationTrust, DTS=DisabilityTrainingServices, EG=EarthGardens, MS=MultipleSclerosisSociety, NCW=NationalCouncilofWomen, PG=ProblemGambling)",
"photo_xmash07_1.jpg||XMAS PARTY 2007|Hastings Studio",
"photo_ai2.jpg||MAKE A NOISE with AMNESTY INTERNATIONAL|Sofia & Maria Roberts discussed topical issues on alternate Sundays in 2007-2008",
"tamsynk.jpg||TAMSYN|Brought us her 'T K HOUR' on Wednesday afternoons, and 'MANNA FROM HEAVEN' on Tuesday evenings",
"rickbarker.jpg||RICK BARKER MP|Brought us political news and topical interviews, each Friday afternoon in 2006-2008",
"photo_jhs1.jpg||EIT DISTANCE LEARNING|Jacqui Hartley-Smith presented JOB-SEARCH SKILLS (10 weeks) and CONFIDENT SPEAKING (6 weeks) tuition courses",
"photo_lu1.jpg||ROS ROWE & AMANDA JACKSON|Were your hosts for the Leg-Up Trust's monthly bulletin in 2007-2008",
"photo_rf1.jpg||FROM THE LETTERBOX 2006-2008|With Russell Fairbrother (MP)",
"photo_lbe1.jpg||THE 2007 PRE-ELECTION MAYORAL INTERVIEW|Mayoral contenders Simon Nixon (L) and Peter Nee Harland (R) faced the questions in Oct2007 along with incumbent Mayor Lawrence Yule",
"photo_dr1.jpg||DANNY|Was your host in 2007 for a Close Encounter with a living God, each Monday evening",
"photo_wa1.jpg||SHARON|Presented 'Wild Africa On Air' on Wednesdays (5:30pm) in 2007-2008",
"photo_js1.jpg||JOSHUA|Hosted his own show, 'JDs Hour', at 6pm Thursdays during 2007",
"photo_is1.jpg||MOHAMMED HUSSEIN ZEWADA|Brought us 'Voice Of Quran' at 6am each day during the 2007 month of Ramdhan",
"photo_pk1.jpg||PAUL|We enjoyed allsorts on his 'PLAYLIST' programme each Wednesday or Thursday evening",
"photo_pam1.jpg||THE PETE & MARIA SHOW|Pete Moodie and Maria Williams teamed up on the 2nd Wednesday of each month",
"photo_umd1.jpg||UNPLUGGED & MILDLY DANGEROUS 2005-2008|Maria: 'Ouch, Dean, the pen in your pocket is poking into me'|Dean:  'That's not a pen'|Michelle:  'Do I really have to work with these two?'",
"photo_umd2.jpg||UNPLUGGED & MILDLY DANGEROUS 2005-2008|Dean: 'I think we look quite debonair, actually'|Maria:  'Don't push it, Deano, just be quiet and smile like me'|Michelle:  'Or not'",
"photo_umd3.jpg||UNPLUGGED & MILDLY DANGEROUS 2005-2008|Dean, Maria & Michelle - A scary sight (and sound) early on a Friday morning",
"photo_mw1.jpg||MARIA (Deputy-Manager 2001-2008)|Nobody ever learnt how to keep this girl quiet - fortunately for us.|Loads of friendly personality and infectious enthusiasm, and it showed in everything she did",
"photo_ab1.jpg||ABBY|2006-2007 host of the Heretaunga Women's Centre programme 'A WOMAN'S WORLD'",
"photo_md1.jpg||MARIE|Presented the Grey Power point-of-view for many years, each month",
"photo_jn1.jpg||JUNE|Her choices were your choices, for 2 hours every Monday morning",
"photo_ts1.jpg||TAIME|Your host until 2007 for the Cook Islands hour, each Friday evening",
"photo_sm1.jpg||SOMALI COMMUNITY RADIO 2007|Sharif Mahamad (presenter), here with David and Chris|[inset: co-presenter]",
"photo_rl1.jpg||RICHARD|A past broadcaster and still a loyal supporter ",
"photo_sam1.jpg||PAT|Helped to broadcast the Samoan Community programme, each week",
"photo_jp1.jpg||ROCKY|of 'FLASHBAX' fame - used technology in various ways and has even played 'The Music Goes Round My Head'",
"photo_jp2.jpg||ROCKY|of 'FLASHBAX' fame - who said that men can't multi-task?",
"photo_jw1.jpg||JUKEBOX WILLIE|The undisputed king of local karaoke",
"photo_lb1.jpg||LOIS|A past broadcaster and still a loyal supporter",
"photo_ttt5.jpg||Finalists of the Talk-the-Talk-2007 Debates|Taradale Intermediate 1 (runners-up) & Taradale Intermediate 2 (winners)|with Dean Hyde & Maria Williams",
"photo_ttt4.jpg||Finalists of the Talk-the-Talk-2007 Debates|Taradale Intermediate 1 (runners-up) & Taradale Intermediate 2 (winners)|with Dean Hyde & Maria Williams|... and Stacey's mum",
"photo_ttt6.jpg||Taradale Intermediate 2, 2007 winners of the Talk-the-Talk-Debates Shield|with David Teesdale (Manager Radio Kidnappers) and Dean Hyde",
"photo_sog3.jpg||Port Ahuriri School, presenting their 'School's Out' 2007 programme",  
"photo_sog4.jpg||Port Ahuriri School, presenting their 'School's Out' 2007 programme",  
"photo_sog5.jpg||Port Ahuriri School, presenting their 'School's Out' 2007 programme",  
"photo_sog6.jpg||Greenmeadows School, presenting their 'School's Out' 2007 programme",  
"photo_sog7.jpg||Greenmeadows School, presenting their 'School's Out' 2007 programme",  
"photo_sog8.jpg||Bledisloe School, presenting their 'School's Out' 2007 programme",  
"photo_sog9.jpg||Mayfair School, presenting their 'School's Out' 2007 programme",  
"photo_sog10.jpg||Eskdale School, presenting their 'School's Out' 2007 programme",  
"photo_gg1.jpg||'Girl Guides On Air, Aug 2007' (1st group)",  
"photo_gg2.jpg||'Girl Guides On Air, Aug 2007' (2nd group)",  
"photo_hk1.jpg||Hukarere Girls College 2007|Shorty & Waimaria presenting",  
"photo_hk2.jpg||Hukarere Girls College 2007|Marata & Shorty presenting",  
"photo_eit1.jpg||EIT JAPANESE STUDENTS|Compiled and presented their own programme in November 2007",
"photo_xmash06_1.jpg||XMAS PARTY 2006|Hastings Studio|Standing (L to R): Maria, David, Dr Rock [Brendan], Dean, Joan & Denise [Red Cross],|John [Forest&Bird], Helen, Morris J, Belinda [Work&Income], Adam|Seated (L to R): John, Sue, Chris, Norma,|Valentina & [husband] Graeme, Rocky, Graeme [Trust Chairman], Danny, June",
"photo_xmasn06_1.jpg||XMAS PARTY 2006|Napier Studio|Standing (L to R): Paul, Gordon, Nicholas/Joy/Matt/David [all from Mosaic], Robin Gwynn [Trust member], Alex, Fred Twyford, Pete [Mosaic], Jukebox Willie, Chris||Kneeling/Seated (L to R): David (Manager), Michelle Pyke, Christopher/Jim/Tarsh/Ben [all from Mosaic], Maria",
"photo_clog1.jpg||THE CLOGHOPPERS (travelling duo from England)|performed on Aroha's programme in Nov 2006",
"photo_dh1.jpg||Cr DEAN HYDE|Looking suspiciously chirpy here as he presented 'A PERFECT DAY' - hmmm ...",
"photo_dh2.jpg||DEAN HYDE|Our very own Dean 'Guevara' raised the finger on 'UNIONS LIVE ON AIR'|(although sometimes it's another finger)|with the words: 'Take note, comrade, they will screw you if they can!'",
"photo_drk1.jpg||DR ROCK (Brendan)|Self-confessed relentless Elvis aficionado, brought us 'ELVIS & FRIENDS' on Tuesdays",
"photo_ey1.jpg||EANA YOUNG (Sport HB)|Yes you must 'use it or lose it' - 'EXERCISING ON AIR' pumped us up on Wednesdays",
"photo_fab1.jpg||FOREST & BIRD SOCIETY 2006|Looked like a very uncompromising group to encounter in the Ruahines if you were damaging any flora and fauna!|- but they always brought us an informative programme each month",
"photo_tsl1.jpg||THIS SPORTING LIFE (2006)|David Teesdale and Grant Harding (host) record interviewee Ian Smith",
"photo_ttt1.jpg||Finalists of the Talk-the-Talk-2006 Debates|Taradale Intermediate (runners-up) & Tamatea Intermediate (winners)|with Maria Williams and Dean Hyde",
"photo_ttt2.jpg||Finalists of the Talk-the-Talk-2006 Debates|Taradale Intermediate (runners-up) & Tamatea Intermediate (winners)|with Maria Williams and Dean Hyde",
"photo_ttt3.jpg||Talk-the-Talk-2006 Debates|Dean Hyde (adjudicator) & Maria Williams (organiser & compere)",
"photo_sog1.jpg||School's Out 2006|Greenmeadows Primary School",
"photo_sog2.jpg||School's Out 2006|Greenmeadows Primary School",
"photo_som1.jpg||School's Out 2006|Mayfair Primary School",
"photo_zosg9.jpg||'I think I prefer Miss September'|David Teesdale (Manager)& Harvey Stiver (Lowe House Building Manager) discussed paperwork a fortnight prior to commissioning of the new studios",
"photo_zosg10.jpg||'Is this mike connected yet?'|David Teesdale contemplated the new Guests table which was still a workbench",
"photo_zosg11.jpg||'Make as much mess as you like; I'll clean it up!'|David Teesdale with Hylton Read (Installation Technician)",
"photo_zosg8.jpg||What's this at half-mast?|Last rites at 'Pigeon Palace' as the aerial system was finally lowered after 11+ years",
"photo_zdt1.jpg||Hastings Studio Opening : 1st July 2006|David Teesdale (Manager) opened the Opening",
"photo_zsh1.jpg||Hastings Studio Opening : 1st July 2006|Scott Henderson (immediate past Chairman) addressed the Opening",
"photo_zsh2.jpg||Hastings Studio Opening : 1st July 2006|Scott Henderson (immediate past Chairman) addressed the Opening",
"photo_zsm1.jpg||Hastings Studio Opening : 1st July 2006|Steve Maharey (Minister of Broadcasting) addressed the Opening",
"photo_zsm2.jpg||Hastings Studio Opening : 1st July 2006|Steve Maharey (Minister of Broadcasting) addressed the Opening",
"photo_zly1.jpg||Hastings Studio Opening : 1st July 2006|Lawrence Yule (Mayor of Hastings District) addressed the Opening",
"photo_zmb1.jpg||Hastings Studio Opening : 1st July 2006|Mike Bodnar (NZ On Air) addressed the Opening",
"photo_zmb2.jpg||Hastings Studio Opening : 1st July 2006|Mike Bodnar (NZ On Air) addressed the Opening",
"photo_zaudrl.jpg||Hastings Studio Opening : 1st July 2006|The audience listened to the various speakers from the Floor",
"photo_zaudrr.jpg||Hastings Studio Opening : 1st July 2006|The audience listened to the various speakers from the Floor",
"photo_zaudll.jpg||Hastings Studio Opening : 1st July 2006|The audience listened to the various speakers from the Floor",
"photo_zaudlr.jpg||Hastings Studio Opening : 1st July 2006|The audience listened to the various speakers from the Floor",
"photo_zaudhc.jpg||Hastings Studio Opening : 1st July 2006|Helen Charters (broadcaster) addressed the Opening",
"photo_zaudfb.jpg||Hastings Studio Opening : 1st July 2006|David Gore (Forest & Bird broadcaster) addressed the Opening",
"photo_zaudat.jpg||Hastings Studio Opening : 1st July 2006|Aroha Thompson (broadcaster) addressed the Opening",
"photo_zsm3.jpg||Hastings Studio Opening : 1st July 2006|Is it an optical illusion or did we catch Chris covertly trying to massage increased funding out of the Minister?|Either way, Steve Maharey seemed to be enjoying it ...",
"photo_zunv1.jpg||Hastings Studio Opening : 1st July 2006|Steve Maharey unveiled the commemorative Plaque",
"photo_zunv2.jpg||Hastings Studio Opening : 1st July 2006|Steve Maharey & Scott Henderson shook on it",
"photo_zosg1.jpg||Hastings Studio Opening : 1st July 2006|Scott Henderson, Barbara Arnott, David Teesdale, Steve Maharey",
"photo_zosg2.jpg||Hastings Studio Opening : 1st July 2006|Scott Henderson, Steve Maharey, Lawrence Yule, Barbara Arnott",
"photo_zosg3.jpg||Hastings Studio Opening : 1st July 2006|Pete Devine (Early-Bird-Gospel broadcaster), David Teesdale, Steve Maharey",
"photo_zsm4.jpg||Hastings Studio Opening : 1st July 2006|'Would you like me to switch on the mike and say something?'|Steve Maharey at the new Console",
"photo_zsm5.jpg||Hastings Studio Opening : 1st July 2006|'Er, how come this mike-sock is BLUE, not RED?!'|joked Steve Maharey",
"photo_zsm6.jpg||Hastings Studio Opening : 1st July 2006|'Did someone just suggest I give you more funding?'|Steve Maharey at the new Console",
"photo_zosg6.jpg||Hastings Studio Opening : 1st July 2006|Steve Maharey (Minister of Broadcasting) signed the Visitors' Book|as Mike Bodnar looks on",
"photo_zosg4.jpg||Hastings Studio Opening : 1st July 2006|Mike Bodnar (NZ On Air) about to sign the Visitors' Book",
"photo_zosg7.jpg||Hastings Studio Opening : 1st July 2006|Mayor Lawrence Yule signed the Visitors' Book",
"photo_zosg5.jpg||Hastings Studio Opening : 1st July 2006|Lawrence Yule, Maria Williams, Barbara Arnott, Mike Bodnar, Scott Henderson",
"photo_zzosg1.jpg||Napier Studio Opening : 24th March 2006|Assembled broadcasters and guests",
"photo_zzosg3.jpg||Napier Studio Opening : 24th March 2006|Assembled broadcasters and guests",
"photo_zzosg2.jpg||Napier Studio Opening : 24th March 2006|Assembled broadcasters and guests",
"photo_zzosg4.jpg||Napier Studio Opening : 24th March 2006|Assembled broadcasters and guests",
"photo_zzbd1.jpg||Napier Studio Opening : 24th March 2006|Bernard Duncan (Acting CEO, NZ On Air) addressed the Opening",
"photo_zzba1.jpg||Napier Studio Opening : 24th March 2006|Barbara Arnott (Mayor, Napier City) addressed the Opening",
"photo_zzck1.jpg||Napier Studio Opening : 24th March 2006|The celebratory cake",
"photo_zzck2.jpg||Napier Studio Opening : 24th March 2006|The celebratory cake, being cut by Barbara Arnott & Michelle Pyke"
);


