function openwindow(url,w,h)
{

  var winwidth = screen.availWidth;
  var winheight = screen.availHeight;
  var leftt=Math.floor((winwidth/2)-(w/2));
  var topt=Math.floor((winheight/2)-(h/2));
  window.open(url,'popup','left='+leftt+',top='+topt+',width='+w+', height='+h+', toolbar=0,  location=0, directories=0,status=0, titlebar=0, menubar=0, resizable=1, scrollbars=1')
};


function openwindow1(url,w,h)
{

  var winwidth = screen.availWidth;
  var winheight = screen.availHeight;
  var leftt=Math.floor((winwidth/2)-(w/2));
  var topt=Math.floor((winheight/2)-(h/2));
  window.open(url,'popup1','left='+leftt+',top='+topt+',width='+w+', height='+h+', toolbar=0,  location=0, directories=0,status=0, titlebar=0, menubar=0, resizable=1, scrollbars=1')
};

function openwindow2(url,w,h)
{

  var winwidth = screen.availWidth;
  var winheight = screen.availHeight;
  var leftt=Math.floor((winwidth/2)-(w/2));
  var topt=Math.floor((winheight/2)-(h/2));
  window.open(url,'popup2','left='+leftt+',top='+topt+',width='+w+', height='+h+', toolbar=0,  location=0, directories=0,status=0, titlebar=0, menubar=0, resizable=1, scrollbars=1')
};

function openwindow3(url,w,h)
{

  var winwidth = screen.availWidth;
  var winheight = screen.availHeight;
  var leftt=Math.floor((winwidth/2)-(w/2));
  var topt=Math.floor((winheight/2)-(h/2));
  window.open(url,'popup3','left='+leftt+',top='+topt+',width='+w+', height='+h+', toolbar=0,  location=0, directories=0,status=0, titlebar=0, menubar=0, resizable=1, scrollbars=1')
};


function getRes(field)
{
	
	location.href="/"+field.name+"/"+field.value;
	
}



var timer;

function fling()
{

	var b= new Array(
	
	"http://www.yourcoloradoconnection.com/images/i1.jpg",
	"http://www.yourcoloradoconnection.com/images/i2.jpg",
	"http://www.yourcoloradoconnection.com/images/i3.jpg",
	"http://www.yourcoloradoconnection.com/images/i4.jpg",
	"http://www.yourcoloradoconnection.com/images/i5.jpg",
	"http://www.yourcoloradoconnection.com/images/i6.jpg",
	"http://www.yourcoloradoconnection.com/images/i7.jpg",
	"http://www.yourcoloradoconnection.com/images/i8.jpg",
	"http://www.yourcoloradoconnection.com/images/i9.jpg",
	"http://www.yourcoloradoconnection.com/images/i10.jpg",
	"http://www.yourcoloradoconnection.com/images/i11.jpg",
	"http://www.yourcoloradoconnection.com/images/i12.jpg",
	"http://www.yourcoloradoconnection.com/images/i13.jpg",
	"http://www.yourcoloradoconnection.com/images/i14.jpg"
	);
    
 if(document.getElementById('s').value=="1")
 {
 	 
		var num=document.getElementById('num').value;
		num*=1;
	  document.getElementById("img2").src=b[num];
    num++;
    if(num >= b.length) num=0;
    document.getElementById('num').value=num;
    
    timer=setTimeout("fling()",3000);
	}

}

function stop()
{
	document.getElementById('s').value="0";
	//clearTimeout(timer);
}

function start()
{
	document.getElementById('s').value="1";
	clearTimeout(timer);
	fling();
}

