// popup opener
function openWin(docName,width,height) {
    window.open(docName,'dispSite','width='+width+',height='+height+',scrolling=no,address=no,toolbars=no,menus=no');
}

// slideshow
var rotate_delay = 4000; // delay in milliseconds (5000 = 5 secs)
current = 0;

function next() 
{
	if (document.slideform.slide[current+1]) 
	{
		document.images.show.src = document.slideform.slide[current+1].value;
		document.slideform.slide.selectedIndex = ++current;
		
		if(document.location == 'http://www.islandlandcare.com/gallery/interior.htm')
		{
			switch (document.images.show.src)
			{
				case 'http://www.islandlandcare.com/images/InteriorDesign/Gallery/8.gif':
				{
					pPicCaption.innerText = 'Large-scale Diamond Pattern'
					break;				
				}
				case 'http://www.islandlandcare.com/images/InteriorDesign/Gallery/9.gif':
				{
					pPicCaption.innerText = 'Faded Fresco Pattern'
					break;
				}
				case 'http://www.islandlandcare.com/images/InteriorDesign/Gallery/10.gif':
				{
					pPicCaption.innerText = 'Hand Painted Diamond Pattern'

					break;
				}
				case 'http://www.islandlandcare.com/images/InteriorDesign/Gallery/11.gif':
				{
					pPicCaption.innerText = 'Strie (dragging) Pattern';

					break;
				}
				case 'http://www.islandlandcare.com/images/InteriorDesign/Gallery/12.gif':
				{
					pPicCaption.innerText = 'Blended Spots Pattern';
					break;
				}
				case 'http://www.islandlandcare.com/images/InteriorDesign/Gallery/13.jpg':
				{
					pPicCaption.innerText = 'Hand-Painted Vine Pattern';
					break;
				}
				default: pPicCaption.innerText = '';
			}
		}
	}
	else first();
	}

function previous() 
{
	if (current-1 >= 0) 
	{
	document.images.show.src = document.slideform.slide[current-1].value;
	document.slideform.slide.selectedIndex = --current;
	
	
			
		if(document.location == 'http://www.islandlandcare.com/gallery/interior.htm')
		{
			switch (document.images.show.src)
			{
				case 'http://www.islandlandcare.com/images/InteriorDesign/Gallery/8.gif':
				{
					pPicCaption.innerText = 'Large-scale Diamond Pattern'
					break;				
				}
				case 'http://www.islandlandcare.com/images/InteriorDesign/Gallery/9.gif':
				{
					pPicCaption.innerText = 'Faded Fresco Pattern'
					break;
				}
				case 'http://www.islandlandcare.com/images/InteriorDesign/Gallery/10.gif':
				{
					pPicCaption.innerText = 'Hand Painted Diamond Pattern'

					break;
				}
				case 'http://www.islandlandcare.com/images/InteriorDesign/Gallery/11.gif':
				{
					pPicCaption.innerText = 'Strie (dragging) Pattern';

					break;
				}
				case 'http://www.islandlandcare.com/images/InteriorDesign/Gallery/12.gif':
				{
					pPicCaption.innerText = 'Blended Spots Pattern';
					break;
				}
				case 'http://www.islandlandcare.com/images/InteriorDesign/Gallery/13.jpg':
				{
					pPicCaption.innerText = 'Hand-Painted Vine Pattern';
					break;
				}
				default: pPicCaption.innerText = '';
			}

		}
	
	}
	else last();
}
function first() {
current = 0;
document.images.show.src = document.slideform.slide[0].value;
document.slideform.slide.selectedIndex = 0;
}
function last() {
current = document.slideform.slide.length-1;
document.images.show.src = document.slideform.slide[current].value;
document.slideform.slide.selectedIndex = current;

		
		if(document.location == 'http://www.islandlandcare.com/gallery/interior.htm')
		{
			switch (document.images.show.src)
			{
				case 'http://www.islandlandcare.com/images/InteriorDesign/Gallery/8.gif':
				{
					pPicCaption.innerText = 'Large-scale Diamond Pattern'
					break;				
				}
				case 'http://www.islandlandcare.com/images/InteriorDesign/Gallery/9.gif':
				{
					pPicCaption.innerText = 'Faded Fresco Pattern'
					break;
				}
				case 'http://www.islandlandcare.com/images/InteriorDesign/Gallery/10.gif':
				{
					pPicCaption.innerText = 'Hand Painted Diamond Pattern'

					break;
				}
				case 'http://www.islandlandcare.com/images/InteriorDesign/Gallery/11.gif':
				{
					pPicCaption.innerText = 'Strie (dragging) Pattern';

					break;
				}
				case 'http://www.islandlandcare.com/images/InteriorDesign/Gallery/12.gif':
				{
					pPicCaption.innerText = 'Blended Spots Pattern';
					break;
				}
				case 'http://www.islandlandcare.com/images/InteriorDesign/Gallery/13.jpg':
				{
					pPicCaption.innerText = 'Hand-Painted Vine Pattern';
					break;
				}
				default: pPicCaption.innerText = '';
			}
		}
}
function ap(text) {
document.slideform.slidebutton.value = (text == "Stop") ? "AutoPlay" : "Stop";
rotate();
}
function change() {
current = document.slideform.slide.selectedIndex;
document.images.show.src = document.slideform.slide[current].value;
}
function rotate() {
if (document.slideform.slidebutton.value == "Stop") {
current = (current == document.slideform.slide.length-1) ? 0 : current+1;
document.images.show.src = document.slideform.slide[current].value;
document.slideform.slide.selectedIndex = current;
window.setTimeout("rotate()", rotate_delay);
   }
}
