
var image_index = 0;
var theImages = new Array()

// This function creates asset Spotlight image objects
function SpotImage(src, title, url) {
	this.src = src;
	this.title = title;
	this.url = url;
}





var j = 0
var p = theImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i].src
}
var whichImage = Math.round(Math.random()*(p-1));
var sls="";
var spt=0;
var sptn=0;
var timerID;

function showImage(){
	if (timerID) { clearTimeout(timerID); }
	whichImage++; if (whichImage >= p) { whichImage = 0; }
	sls="";
	if (p > 0) {
		if (theImages[whichImage].url != "") {
			var selectedImageUrl=theImages[whichImage].url;
			if (selectedImageUrl.substring(0,20) == "http://www.ercot.com" || selectedImageUrl.substring(0,1)=="/") {
				sls+="<a href='" + selectedImageUrl + "'>";
				sls+="<img src='" + theImages[whichImage].src + "' border='0' title='" + theImages[whichImage].title + "' />";
				sls+="</a>";
				}
			else {
				sls+="<a href='" + selectedImageUrl + "' onClick='var newwin = window.open(\"" + selectedImageUrl + "\", \"ercotspotwindow\", \"width=800, height=600, resizable=yes, scrollbars=yes, toolbar=yes, location=yes, menubar=yes\");newwin.focus();return(false);'>";
				sls+="<img src='" + theImages[whichImage].src + "' border='0' title='" + theImages[whichImage].title + "' />";
				sls+="</a>";
				}
			}
		else {
			sls+="<img src='" + theImages[whichImage].src + "' border='0' title='" + theImages[whichImage].title + "' />";
			}
		}
	spt=whichImage+1;
	//<!-- no section matches the select key: 'cpwp004i_properties_deploy_map'-->
	document.getElementById('spotdiv').innerHTML = sls;
	}

function dashJumpTo(objSel) {
	if (objSel != null) {
		var page = objSel.options[objSel.selectedIndex].value;
		if (page != "") { 
			if (page.substring(0,20) != "http://www.ercot.com" && page.substring(0,1) != "/") { 
				var newwin = window.open(page, "ercotdashwindow", "width=800, height=600, resizable=yes, scrollbars=yes, toolbar=yes, location=yes, menubar=yes");
				newwin.focus();				
			}
			else {
				window.location.href = page;				
			}
		}
	}
}

