function deletePage(id)
{
	if (confirm('Are you sure you wish to delete this page?'))
	{
		location.href = '/adminpages/delete/' + id;	
	}
}

function deleteBlogType(id)
{
	if (confirm('Are you sure you wish to delete this blog type?'))
	{
		location.href = '/adminblogs/deleteblogtype/' + id;	
	}
}

function deleteBlog(id)
{
	if (confirm('Are you sure you wish to delete this blog item?'))
	{
		location.href = '/adminblogs/deleteblog/' + id;	
	}
}

function moveBlogUp(id)
{
	location.href = '/adminblogs/moveblogup/' + id;
}

function moveBlogDown(id)
{
	location.href = '/adminblogs/moveblogdown/' + id;
}

function changeImagePreview(oEle)
{
	var buttonId = oEle.options[oEle.selectedIndex].value;
	var divId = oEle.name + 'Div';
	new Ajax.Updater(divId,'/ajaxadminpages/changeimagepreview/' + buttonId);
}
