function confirmDelete()
{

	var agree=confirm("Do you want really DELETE it?");
	
	if (agree)
		return true ;
	else
		return false ;
}

function pointer() {
	document.body.style.cursor="pointer";
}

function arrow() {
	document.body.style.cursor="default";
}

