function DeleteConfirm(which){

    which.style.backgroundColor = "Red";
   
    if (confirm("Are you sure you want to delete this row?")){    
		return true;
    }
    else {
		which.style.backgroundColor = "";
		return false;
    }           
}

function ConfirmMsg(strMsg, optWhich){
	
	if (optWhich){optWhich.style.backgroundColor = "Red";}
	
	if (confirm(strMsg)){    
		return true;
    }
    else {
		if (optWhich){optWhich.style.backgroundColor = "";}
		return false;
    }           
}

function CheckForMsg(){
	var msg = "";
	
	if (GetElement("AlertMsg") != null) 
		{msg = GetElement("AlertMsg").value;}
	
	if (GetElement("SideLinks1_AlertMsg").value != null)
		{msg = GetElement("SideLinks1_AlertMsg").value;}
	
	if (msg != ""){alert(msg);}
}

