// JavaScript Document


								function GetBrowser() {
										if (navigator.userAgent.indexOf("Opera")!=-1 && document.getElementById) type="OP";		//Opera
										else if (document.all) type="IE";														//Internet Explorer e.g. IE4 upwards
										else if (document.layers) type="NN";													//Netscape Communicator 4
										else if (!document.all && document.getElementById) type="MO";							//Mozila e.g. Netscape 6 upwards
										else type = "IE";		//I assume it will not get here
									}
									
									function whatBrows() {
										window.alert("Browser is : " + type);
									}

									function ChangeContent(id, str) {
									GetBrowser()
									if (type=="IE") {	
										document.all[id].innerHTML = str;
										}
									if (type=="NN") { 
										document.layers[id].document.open();
										document.layers[id].document.write(str);
										document.layers[id].document.close();
									}
									if (type=="MO" || type=="OP") {
										document.getElementById(id).innerHTML = str;
									}
									}

									function backward(){
									if (which>0){
										window.status=''
										which--
										ChangeContent('scrolltext', '( Image ' + (which+1) + ' of ' + noofimages +' )')
										document.images.posterscroller.src=posters[which]
										}
									}

									function forward(){
									if (which<posters.length-1){
										which++
										ChangeContent('scrolltext', '( Image ' + (which+1) + ' of ' + noofimages +' )')
										document.images.posterscroller.src=posters[which]
										}
									else window.status='End of images'
									}
									function goLite(FRM,BTN)
									{
										window.document.forms[FRM].elements[BTN].style.color = "#394A58";
										window.document.forms[FRM].elements[BTN].style.backgroundColor = "#E9F6CC";
									}

									function goDim(FRM,BTN)
									{
										window.document.forms[FRM].elements[BTN].style.color = "#FFFFFF";
										window.document.forms[FRM].elements[BTN].style.backgroundColor = "#D7DBDE";
									}
