function showInfo(title,i){

wdow = window.open("","","height=800,width=600,scrollbars=yes,resizable=yes,menubar=no");
wdow.document.write(i);
wdow.document.close();
return(false);

}

function showImage(name, imageName, thumbName, width, height, thumbWidth,thumbHeight){


var img = document.images[name];
if(img.title == "Click to expand"){

	img.title = "Click to close";
	img.width=width;
	img.height=height;
	img.src=imageName;

}
else if(img.title == "Click to close"){
	img.title = "Click to expand";
	img.width=thumbWidth;
	img.height=thumbHeight;
	img.src=thumbName;
	}
}

