function confirm_del()
{
	if (confirm('Are you sure you want to remove this inmate?'))
		return true;
	else
		return false;
}
function email_del()
{
	if (confirm('Are you sure you want to delete this message?'))
		return true;
	else
		return false;
}
function confirm_status()
{
	if (confirm('Are you sure you want to change this Inmates status?'))		 
			 return true;
	else
		return false;
}

function confirm_active()
{
	if (confirm('Are you sure you want to Activate this Inmates status?'))
		return true;
	else
		return false;
}
function confirm_inactive()
{
	if (confirm('Are you sure you want to Inactivated this Inmates status?'))
		return true;
	else
		return false;
}



function confirm_active_payed()
{
	if (confirm('Are you sure you want to make this Inmate Ad Paid?'))
		return true;
	else
		return false;
}
function confirm_inactive_notpayed()
{
	if (confirm('Are you sure you want to make this Inmate ad unpaid?'))
		return true;
	else
		return false;
}

/*function (id)
{
	window.open("../image_view_window.php?id="+id,"","width=430,height=400,scrollbars=yes");
}*/

function image_window_admin(id,height,width,title)
{
			
	window.open("../image_view_window.php?id="+id,"","width="+width+",height="+height+",resizable=no,menubar=no,left=10,top=10,screenX=10,screenY=10,scrollbars=no");
}

/*function image_window(id)
{
	window.open("image_view_window.php?id="+id,"","width=430,height=400,scrollbars=yes");
}*/
function image_window(id,height,width,title)
{
			
	window.open("image_view_window.php?id="+id,"","width="+width+",height="+height+",resizable=no,menubar=no,left=10,top=10,screenX=10,screenY=10,scrollbars=no");
}



function confirm_del_image()
{
	if (confirm('Are you sure you want to Remove this Image?'))
		return true;
	else
		return false;
}

 
 