/*

		title:    		  IPP for futuristic eSolutions

		author:   		  anil@futuristiceSolutions.com

		

*/



//PAGE LOAD SPEED

	// Courtesy of SimplytheBest.net - http://simplythebest.net/scripts/

	loadtime="0"

	loading=true

	s="s"

	{refresh()}

	function refresh()

	{setTimeout("count()",250)}

	function count()

	{if (loading)

	{loadtime=loadtime+++0.25;refresh()}}

	function done()

	{if (loadtime==1)

	{s=""}

	alert("It took "+loadtime+" second"+s+" to load the page");loading=false}

//PAGE LOAD SPEED



// CURRENT DAY AND DATE - appears in the lasttable.php

var mydate=new Date()

					var theYear=mydate.getFullYear()

					var day=mydate.getDay()

					var month=mydate.getMonth()

					var daym=mydate.getDate()

				

					if (daym<10)

						daym="0"+daym

						var dayarray=new Array("<b>Sunday</b>","<b>Monday</b>","<b>Tuesday</b>","<b>Wednesday</b>","<b>Thursday</b>","<b>Friday</b>","<b>Saturday</b>")

						var montharray=new Array("01","02","03","04","05","06","07","08","09","10","11","12")

// CURRENT DAY AND DATE - appears in the lasttable.php


//-----------------------------------------------------------------------------

// NewsLetter

//-----------------------------------------------------------------------------


function newsletter()
{
	if(document.FormNews.nametxt.value==''){
    document.FormNews.nametxt.focus();
    alert("Please make sure Name is not left blank");
   	return false;
    }
		if (window.document.FormNews.email_tb.value.indexOf('.')=="-1" || window.document.FormNews.email_tb.value.indexOf('@')=="-1")
	{
	alert("Please enter your Email properly!")
	window.document.FormNews.email_tb.focus();
	return false; }
	else{
    document.FormNews.action="newsletter-confirm.php";
    document.FormRequest.submit();
    }
}


