function deleteConfirmation(msg) {
	validity = false; 
	if (confirm('Are you sure you want to delete this ' + msg + '?')){
		validity = true;}
	return validity;
}


function openWin(url)
{
	x = window.open(url, "x", "toolbar=no,scrollbars =no,width=325,height=225" );
}
	
