﻿// JavaScript Document

function showBlessings(nVar)
{
	document.getElementById('blessBlockPage').style.display='';
	document.getElementById('blessBlock').style.left=((screen.width/2)-300) + 'px';
	var ns = (navigator.appName.indexOf("Netscape")!= -1);
	var newBack = ns? pageYOffset : document.documentElement.scrollTop;
	document.getElementById('blessBlock').style.top=(newBack+((screen.height/2)-300)) + 'px';
	document.getElementById('blessBlockPage').style.height='1571px'
	document.getElementById('blessBlockPage').style.opacity = 0.3;
	document.getElementById('blessBlockPage').style.filter = 'alpha(opacity=30)';
	document.getElementById('blessBlock').style.display='block';
	switch(nVar)
	{
		case 0:
			document.getElementById('Question').innerHTML = "How to pray for 2 1/2 hours daily ?"
			document.getElementById('Answer').innerHTML = "Dear Bro/Sis,<br /><br />I greet you in the name of our Lord Jesus Christ. The prayer will brings victory in your life. When Iam 13 years old, the Holy Spirit lifts me up to the Heaven. There I heard a voice from a God’s temple that you should come to the full time ministry. I answered the voice that I did not go to any schools and so Iam not educated. The voice replied me that for an hour if you sit 10 minutes in my foot you will be educated. But I gave 3 hours without calculate the time. So God also blessed me without any calculation. When I prayed three hours God educated me and He asked to read the Bible. There He told an idea of splitting three hours for prayer. By the verse Lamentation 2:18, 19 He asked to pray night and day. By the verse Luke 21:36 He asked to watch therefore, and pray always. In Proverb 8:17 He told those who seek me diligently will find me. In Mathew 26:40 He asked could you not watch with Me one hour.<br /><br />In this universe, we have to give importance to prayer. Prayer gives victory in all our problems and solution to our questions. The life without prayer is like the house without roof. Hence prayer is very much important in one’s day today life. Daniel prays three times daily (Daniel 16:10) and God saved him from lion’s den. Paul and Silas prays and was delivered from the prison (Acts 16:25-40).<br /><br />If you need a thing to get you must pray at least 2.30 hours daily. To attain the eternal life the prayer is the first thing we have to do. As by the verse Malachi 3:8 we give tithes (i.e., for an income of Rs 100 we have to give Rs10 to God) in our income, but also we have to give tithes in the time He gives us life (i.e., for one hour we have to give 10 minutes). The man who we see today cannot be seen tomorrow. Note the day and time you are reading this scripture; it will not be come back tomorrow. So time is precious than anything. So you first give tithes in your life time i.e., for 24 hours daily you should give at least 2.30 hours. Try to have this habit of praying at least 2.30 hours daily. You will be shined like a star in the sky. When you pray continuously God, the Father will hear you and Jesus Christ, the only begotten son of God will come nearby you and the Holy Spirit will enter into your heart. When the Holy Spirit fills you, the incompleteness will go away from you. Hence pray and get victory in your life. Amen!<br /><br /><p class='right'>Sister Ruth Daniel</p>";
			break;
		case 1:
			document.getElementById('Question').innerHTML = "How to take fasting ?"
			document.getElementById('Answer').innerHTML = "Dear Bro/Sis,<br /><br />I greet you in the name our LORD Jesus Christ. We can defeat Satan by take fasting and prayer (MATHEW 17:21). <br /><br />One day LORD lift me to the middle of the sky and told that the spiritual hosts of wickedness in the Heavenly places make a huddle for the prayer to enter in to Heaven. To overcome this we have to take fasting and pray.<br /><br />According to the verse MATHEW 6:16-18 when you fast, do not be like the hypocrites, with a sad countenance. For they disfigure their faces that they may appear to men to be fasting. Assuredly, I say to you, they have their reward. But you, when you fast, anoint your head and wash your face, so that you do not appear to men to be fasting, but to your Father who is in the secret place; and your Father who sees in secret will reward you openly. Amen!<br /><br /><p class='right'>Sister Ruth Daniel</p>";
			break;
		case 2:
			document.getElementById('Question').innerHTML = "Why we need fire anointings ?  "
			document.getElementById('Answer').innerHTML = "<img src='images/fire-anointings.jpg' align='right' />When I am 14 years old God spoken me to take fasting for 40 days. In 15 days, the Holy Spirit bring me up to the middle of the sky and I saw a dove flying above me and a fire poured from the dove in my head i.e.) fire anointing.<br /><br />By the verse ZECHARIAH 2:5 God spoken me that I will be a wall of fire all around you and I will be the glory in your midst. When you take fasting you will get the fire anointing which I got.<br /><br />By the verse ROMANS 12:11 you will not lagging in diligence, fervent in spirit, serving the LORD.As in MATHEW 3:11 when your spirit, soul and body filled with FIRE ANOINTING, we can defeat the demons and have fruitful life for JESUS. Without getting FIRE ANOINTING you cannot defeat the demons. The scripture of fire anointing in deep will come later on.Amen!<br /><br /><p class='right'>Sister Ruth Daniel</p>";
			break;
	}
}
var newTotal = '';
var finalPayValue = '';
function changeAmount(nAmount)
{
	if(isValidNumber(nAmount))
	{
		document.getElementById('totalAmount').innerHTML="Rs. " + nAmount * 20 + "/-";
		//document.getElementById('Total_Amount').value=nAmount * 20;
		newTotal = nAmount * 20;
		loadConverter();
	}
	else
	{
		nAmount = 0;
		document.getElementById('totalAmount').innerHTML="Rs. " + nAmount * 20 + "/-";
		document.getElementById('Total_Amount').value=nAmount * 20;
	}
}

function formatNumber(myNum, numOfDec)
{
	var decimal = 1
	for(i=1; i<=numOfDec;i++)
	decimal = decimal *10;	
	var myFormattedNum = (Math.round(myNum * decimal)/decimal).toFixed(numOfDec);
	return(myFormattedNum)
}
function loadConverter()
{
  //alert (newTotal);
	document.calcForm.inV.value=newTotal;
	document.calcForm.from.value="19";
	document.calcForm.to.value="3";
	Cvalue();//document.calcForm.submit();
	var mySplitResult = document.calcForm.outV.value.split("= ");
	mySplitResult = mySplitResult[1].split(" USD");
	finalPayValue = formatNumber(mySplitResult[0], 2);
	document.getElementById("Total_Amount").value=finalPayValue;
}









function hideBless()
{
	document.getElementById('blessBlockPage').style.display='none';
	document.getElementById('blessBlock').style.display='none';
}
function Validate(nForm)
{
	document.getElementById('Your_Email').email=true;
	document.getElementById('Fax_Number').opNumeric=true;
	document.getElementById('Phone_Number').numeric=true;
	document.getElementById('Donation_Amount').numeric=true;
	return frmValidateCommon(nForm);
}
function ValidateBuy(nForm)
{
	document.getElementById('Your_Email').email=true;
	document.getElementById('Fax_Number').opNumeric=true;
	document.getElementById('Phone_Number').numeric=true;
	document.getElementById('Number_of_Copies').numeric=true;
	return frmValidateCommon(nForm);
}
function ValidateContact(nForm)
{
	document.getElementById('Your_Email').email=true;
	document.getElementById('Phone_Number').numeric=true;
	return frmValidateCommon(nForm);
}
function ValidateDedicate(nForm)
{
	document.getElementById('Member_Phone_Number').numeric=true;
	document.getElementById('Applicant_Phone_Number').numeric=true;
	document.getElementById('Date_of_Birth').date=true;
	return frmValidateCommon(nForm);
}
function ValidatePrayer(nForm)
{
	document.getElementById('Your_Email').email=true;
	document.getElementById('Phone_Number').numeric=true;
	return frmValidateCommon(nForm);
}

