// JavaScript Document
function confirmDelete(str1, str2)
{
	if(confirm(str2))
	{
		window.location = str1;
	}
}

function MsgBox(textstring) 
{
	alert (textstring)
}