// JavaScript Document

//descriptions = new array();

//function ShowLongDescription(id) {
	// this fuction will put the photos long descriptin into the left side of the page
	//alert('show');
//	area = document.getElementById('photo_long_description');
//	image = id + 1;
//	if (image < 10) {
//		imagetext = '0'+image;
//	} else {
//		imagetext = image;
//	}
//	show = '<p><strong>'+imagetext+'</strong><br />'+descriptions[id]+'</p><p>&nbsp;</p><p style="text-align:center;"><strong>Click Image to Enlarge</p>';
//	area.innerHTML = show;
//}

function ShowGalleryPopup(id) {
	// this function will open a popup window to display the larger version of the gallery photo
	//alert('popup');
	window.open('/photos/index.php?photo_id='+id,'PACLINEImageEnlarger','width=800, height=600, resizable=yes, scrollbars=yes, toolbar=no, location=no, directories=no, status=no, menubar=no, copyhistory=no')
}

//function HideDescription() {
	// replace long description with default text
	//alert('hide');
//	area = document.getElementById('photo_long_description');
//	show = '<p style="text-align:center;"><strong>Mouse Over Image to see Long Description Here</strong></p><p>&nbsp;</p><p style="text-align:center;"><strong>Click Image to Enlarge</strong></p>';
//	area.innerHTML = show;
//}