function Viewer(url, name, height, width){
				 win = window.open(url, name,'width=' + width + ',height=' + height + ',toolbar=no,location=no,status=yes,menubar=no,resizable=yes,scrollbars=no'); 
				 win.focus;
				 }
				 var d=new Date();
				 theMonth=d.getMonth();
				 switch (theMonth) {
								case 0:
  							   sSeason = "Winter";
  							   break;
								case 1:
    						   sSeason = "Winter";
								   break;
								case 2:
								   sSeason = "Spring";
									 break;
								case 3:
  								 sSeason = "Spring";
									 break;
								case 4:
  								 sSeason = "Spring";
  								 break;
								case 5:
  								 sSeason = "Summer";
  								 break;
								case 6:
  							   sSeason = "Summer";
									 break;
								case 7:
  							   sSeason = "Summer";
									 break;
								case 8:
  							   sSeason = "Fall";
									 break;
								case 9:
  							   sSeason = "Fall";
									 break;
								case 10:
  							   sSeason = "Fall";
									 break;
								case 11:
  							   sSeason = "Winter"; }
<!--SLIDE SHOW JSCRIPT-->
			// Set slideShowSpeed (milliseconds)
			var slideShowSpeed = 5000			
			// Duration of crossfade (seconds)
			var crossFadeDuration = 3
			// Specify the image files
			var Pic = new Array()		
			Pic[0] = ace_path + 'images/phoTopCouple1' + sSeason + '.jpg'
			Pic[1] = ace_path + 'images/phoTopCouple2' + sSeason + '.jpg'
			Pic[2] = ace_path + 'images/phoTopCouple3' + sSeason + '.jpg'
			Pic[3] = ace_path + 'images/phoTopCouple4' + sSeason + '.jpg'			
			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 runSlideShow(){
			if (document.all){
				document.images.SlideShow.style.filter="blendTrans(duration=2)"
				document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDuration)"
				document.images.SlideShow.filters.blendTrans.Apply()      
			}
			document.images.SlideShow.src = preLoad[j].src
			if (document.all){
				document.images.SlideShow.filters.blendTrans.Play()
			}
			j = j + 1
			if (j > (p-1)) j=0
			t = setTimeout('runSlideShow()', slideShowSpeed)
			}		