<!--

function newImage(arg) {
	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}

function changeImages() {
	if (document.images && (preloadFlag == true)) {
		for (var i=0; i<changeImages.arguments.length; i+=2) {
			document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
		}
	}
}

var preloadFlag = false;
function preloadImages() {
	if (document.images) {
		preloadFlag = true;
	}
}

	function focusColor(theField, theColor){
	    theField.style.backgroundColor = theColor;  
	    return true;	
	}

	function windowstate(filename, name, scroll, width, height, left, top)
	{
		windowops = eval("'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=" + scroll + ",resizable=yes,copyhistory=yes,alwaysRaised=yes,width=" + width + ",height=" + height + ",left=" + left + ",top=" + top + "'");

		newWindow = window.open(filename, name, windowops);
		newWindow.focus();
		return;
	}

	myPix = new Array("http://www.tagumbrella.com/images/4499_open.jpg","http://www.tagumbrella.com/images/4479%20Custom%20Blue_Saks%20Fifth%20Ave-thumb.jpg","http://www.tagumbrella.com/images/2088%20White_Telus-thumb.jpg","http://www.tagumbrella.com/images/9001_open.jpg","http://www.tagumbrella.com/assets_c/2009/12/4479-open-brown-thumb-150x150-807.jpg","http://www.tagumbrella.com/assets_c/2009/12/2088-open-navywhite-thumb-150x150-806.jpg","http://www.tagumbrella.com/assets_c/2009/12/4479P-open-white-thumb-150x150-805.jpg"
)
	imgCt = myPix.length 

	function choosePic() {
		if (document.images) {
			randomNum = Math.floor((Math.random() * imgCt))
			document.myPicture.src = myPix[randomNum]
		}
	}
	
// -->