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(index, imageName, thumbName, width, height, thumbWidth,thumbHeight){

if(document.images[index].title == "Click to expand"){
	document.images[index].title = "Click to close";
	document.images[index].width=width;
	document.images[index].height=height;
	document.images[index].src=imageName;

}
else if(document.images[index].title == "Click to close"){
	document.images[index].title = "Click to expand";
	document.images[index].width=thumbWidth;
	document.images[index].height=thumbHeight;
	document.images[index].src=thumbName;
	}
}
