// JavaScript Document

function galleryInsert() {
	// CONFIRM REQUIRES ONE ARGUMENT
	var message = "Are you sure you want to create this Gallery?";
	// CONFIRM IS BOOLEAN. THAT MEANS THAT
	// IT RETURNS TRUE IF 'OK' IS CLICKED
	// OTHERWISE IT RETURN FALSE
	var return_value = confirm(message);

	// TEST TO SEE IF TRUE|FALSE RETURNED
	if (return_value == true) {
		// YOUR 'OK' SCRIPT GOES HERE
		document.insertgallery.method = "post";
		document.insertgallery.action = "/webadmin/web-applications/photogallery-manager/functions.php";
		document.insertgallery.submit();
	} else {}
}

function photoDelete(photogallery, id) {
	// CONFIRM REQUIRES ONE ARGUMENT
	var message = "Are you sure you want to delete this Photo?";
	// CONFIRM IS BOOLEAN. THAT MEANS THAT
	// IT RETURNS TRUE IF 'OK' IS CLICKED
	// OTHERWISE IT RETURN FALSE
	var return_value = confirm(message);

	// TEST TO SEE IF TRUE|FALSE RETURNED
	if (return_value == true) {
		// YOUR 'OK' SCRIPT GOES HERE
		window.location="/webadmin/web-applications/photogallery-manager/functions.php?subphotodelete=1&photogallery=" + photogallery + "&id=" + id;
	} else {
		// YOUR 'CANCEL' SCRIPT GOES HERE
		
	}
}

//--- Photo Gallery Script
function changephoto(gallery,filename,photocaption) {
	document.getElementById('photo').src="photogalleries/" + gallery + "/photos/" + filename;
	document.getElementById('SLIDESTEXT').innerHTML= photocaption;
	return false;
}

function bt_slideshow() {
	//document.getElementById("startslideshow").style.display = "none";
	//document.getElementById('stopslideshow').style.display = "block";
}

//--- Change Photo Gallery Script
function bt_slideshowstop() {
	//document.getElementById('startslideshow').style.display = "block";
	//document.getElementById('stopslideshow').style.display = "none";
}
