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, width,height){
document.images[index].src=imageName;
document.images[index].width=width,document.images[0].height=height
if(document.images[index].title == "Click to expand")
	document.images[index].title == "Click to close"
else if(document.images[index].title == "Click to close")
	document.images[index].title == "Click to expand"
}
