<!-- Common Site JS -->

function DropDownChange(url)
{
	if (url != '')
	{
		window.location = url;
	}
}

function ConfirmDeleteEntry(id, col, srt, page)
{
    var message = "Please confirm that you wish to remove this entry.";

    if (confirm(message) == true)
    {
       window.location = '/deleteentry.php?page=' + page + '&col=' + col + '&srt=' + srt + '&id=' + id;
    }
}
