function Check(n)
{
msg = "You are about to delete this item.\n\n" +
	"If you are sure click 'OK', otherwise click 'Cancel'"
what = n
strGo = "delete.asp?lineid=" + n
if (confirm(msg))
	self.location.href = strGo
}

function CheckLink(n)
{
msg = "You are about to delete this item.\n\n" +
	"If you are sure click 'OK', otherwise click 'Cancel'"
what = n
strGo = "delete_link.asp?lineid=" + n
if (confirm(msg))
	self.location.href = strGo
}