// JavaScript Document
function confirmSubmit()
{
var agree=confirm("Are you sure you wish to delete?");
if (agree)
	return true ;
else
	return false ;
}

function confirmSubmit1()
{
var agree=confirm("Are you sure you wish to RESET the Poll Results?");
if (agree)
	return true ;
else
	return false ;
}
