<!--

/* This script is mailware. Feel free to use and modify it as you want. 
   Please send a mail to andrea_gfg@hotmail.com just to notify me you liked it. */


var photoGalleryDetail;

/*function goToAuthor(cognome, nome) {
	document.forms.authorForm.cognomeAutore.value = cognome;
	document.forms.authorForm.nomeAutore.value = nome;
	if (isNaN(document.forms.authorForm.authorIndex.value)) {
		document.forms.authorForm.authorIndex.value = 0;
	}
	else {
		document.forms.authorForm.authorIndex.value = parseInt(document.forms.authorForm.authorIndex.value) + 1;
	}
	alert(document.forms.authorForm.authorIndex.value);
	document.forms.authorForm.submit();
}*/

function goToAuthor(authorIndex) {
	document.forms.authorForm.authorIndex.value = authorIndex;
	document.forms.authorForm.submit();
}

function showDetail(imageName, imageTitle, author, optionalData) {
	if (!photoGalleryDetail || photoGalleryDetail.closed)
		photoGalleryDetail = window.open('', 'photoGalleryDetail', 'top=0px; left=0px; height=700px; width=900px; titlebar=no; menubar=no;');
	while (!photoGalleryDetail || photoGalleryDetail.closed)
		;
	var imageDataForm = document.forms.detailForm;
	imageDataForm.imageName.value = imageName;
	imageDataForm.imageAuthor.value = author;
	imageDataForm.imageTitle.value = imageTitle;
	imageDataForm.imageOptionalData.value = optionalData;

	document.forms.detailForm.submit();
}

-->