﻿function ConfirmDelete()
    {
        var conf;
        conf = confirm("Are you sure you want to delete ?")
        if (conf == true)
            {
            return true;
            }
        else
            {
            return false;
            }
    }
    function ConfirmSave()
    {
        var conf;
        conf = confirm("If You have mode chages to the data below then you need to save it else the change will not be saved To continous click Ok else click Cancel and the save you changes.")
        if (conf == true)
            {
            return true;
            }
        else
            {
            return false;
            }
    }
function ConfirmQuery(tit)
    {
        var conf;
        conf = confirm(tit)
        if (conf == true)
            {
            return true;
            }
        else
            {
            return false;
            }
    }


function Grdmouseover(row, sty)
    {
    if (sty == 1)
		{
		row.style.color='#F6F6F6';
		}
	else if (sty == 2 )
		{
		row.style.backgroundColor='#F6F6F6';
		}
  //  row.style.fontWeight='normal';               
    }

function Grdmouseout(row, sty)
    {
    if (sty == 1)
		{
		row.style.color='Black';
		}
	else if (sty == 2)
		{
		row.style.backgroundColor='#FDFDFD';
		}
     }
 
    

   
