function delAlbum(albumId,url){
	if (confirm('Delete this album: ' + albumId + '?')) {
		window.location.href = url + '&delete=' + albumId;
	}
}

function viewImage(albumId) {
	if (albumId != '') {
		window.location.href = 'index.php?gal=list_image&album=' + albumId;
	} 
	else {
		window.location.href = 'index.php?gal=list_image';
	}
}

function delImage(albumId,imgId,url) {
	if (confirm('Delete this image ' + imgId + 'From album ' + albumId + ' ?')) {
		window.location.href = url + '&delete=' + imgId + '&albId=' + albumId;
	}
}

function viewLargeImage(imageName){
	imgWindow = window.open('', 'largeImage', "width=" + screen.availWidth + ",height="  + screen.availHeight + ",top=0,left=0,screenY=0,screenX=0,status=yes,scrollbars=yes,resizable=yes,menubar=no");
	imgWindow.focus();
	imgWindow.location.href = 'script/viewImage.php?type=glimage&name=' + imageName;
}


