  var OldColor;

  function mOvr(src,clrOver) {
    if (!src.contains(event.fromElement)) {
      src.style.cursor = 'hand';
      OldColor = src.bgColor;
      src.bgColor = clrOver;
    }
  }
  
  function mOut(src) {
    if (!src.contains(event.toElement)) {
      src.style.cursor = 'default';
      src.bgColor = OldColor;
    }
  }
  
  function mClk(src) {
    window.location=src;
  }

	function CopyEmail(emailid){
		window.clipboardData.clearData()
		window.clipboardData.setData("Text" ,emailid)
		alert("Copy " +emailid+" ΰΓΥΒΊΓιΝΒαΕιΗ€ΓΡΊ")
	}

