// JavaScript Document
function DeleteGallery(id) {
	if(confirm('Are u sure u want to delete this Gallery? \nAll of the associated gallery images will also be deleted.'))  {
		location.href="loader.php?option=gallery&act=oper&page=operategallery&task=delete&gallery_id="+id;
	}
	else { 
		return false;
	}
}

function DeleteGalleryImage(id , pg) {
	if(confirm('Are u sure u want to delete this Image?'))  {
		location.href="loader.php?option=gallery&act=oper&page=operategalleryimage&task=delete&gallery_image_id="+id+"&pg="+pg;
	}
	else { 
		return false;
	}
}

function DeleteFront(id) {
	if(confirm('Are u sure u want to delete this Image?'))  {
		location.href="loader.php?option=gallery&act=oper&page=operatefront&task=delete&fimadeid="+id;
	}
	else { 
		return false;
	}
}

function PublishStatus(fimadeid , fpub , pg)
{
	if(fpub == 'y')
		msg = "Are you sure you want to unpublish this pic on front page?";
	if(fpub == 'n')
		msg = "Are you sure you want to publish this pic?";
	
	if(confirm(msg)){
		if(pg)
			location.href = "loader.php?option=gallery&act=oper&page=operatefront&task=publish&fimadeid="+fimadeid+"&pg="+pg;
		else
			location.href = "loader.php?option=gallery&act=oper&page=operatefront&task=publish&fimadeid="+fimadeid;
	}
	else{
		return false
	}
}
