//if (document.images) {
	//var sPath = "http://localhost/theatrefest/lmtest/";
	var sPath = "http://www.broadwaylesmis.com/";
	var images = new Array(2);
	for(var i=0; i<2; i++){
		images[i] = new Image();
	}	
	images[0].src = sPath + 'images/shim.gif';
	images[1].src = sPath + 'images/Cosettelogosmall.gif';
	
//}

function Toggle (sImage, iFile){
	eval ('document.' + sImage + '.src = images[' + (iFile) + '].src');
}


/*dual image replacement functions*/

function hiLite(k,name,j){
		if(document.images) {
			eval ('document.' + name + '.src = images[' + (j) + '].src');
			eval ('document.top.src = images[' + (k) + '].src');
	
		}
	}

function showImage(w,h,winName,fileName) {
	//set w and h to the width and height of the photo + 20 each
	var newSize = "width=" + w + ",height=" + h;
	var daPix= "images/" + fileName;
	window.open(daPix,winName,newSize);
}