<!--
function makeArray(n) 
{
this.length = n
return this
}
monthNames = new makeArray(12)
monthNames[1] = "January"
monthNames[2] = "February"
monthNames[3] = "March"
monthNames[4] = "April"
monthNames[5] = "May"
monthNames[6] = "June"
monthNames[7] = "July"
monthNames[8] = "August"
monthNames[9] = "September"
monthNames[10] = "October"
monthNames[11] = "November"
monthNames[12] = "December"

function dateString(oneDate) 
{
var theMonth = monthNames[oneDate.getMonth() + 1]
var theYear = oneDate.getFullYear()
return theMonth + " " + oneDate.getDate() + ", " + theYear
}
function sbmt(ctycd)
{
   window.open ('','_new','width=323, height=400,scrollbars=1,top=50,left=440,screenX=50,screenY=440');
    document.forms['weather'].submit();
}
function sbmt2(frmsign)
{
   if(frmsign.day.value=="" || frmsign.month.value=="" || frmsign.year.value=="" )
   {
      alert("Please Select birth date properly");
	  return (false);
   }
   else
   {
      window.open ('','_horo','width=350, height=300,scrollbars=1,top=100,left=400,screenX=100,screenY=400');
      document.forms['horo'].submit();
      return (true);
  } 
}
function chk(frmsearch)
  {
     if(Trim(frmsearch.qu.value)=="")
     {
       alert ("Search field should not be empty.")
       frmsearch.qu.focus();
       return(false);
     }
        return (true);
   }
function doSubmit()
{
 document.forms['qz'].submit(); 
}
function getHifunda()
{
   document.forms['hifundaSearch'].search.value = document.forms['search'].qu.value;
   document.forms['hifundaSearch'].submit();
}
 
function Target(x,y,z)
{
 	 document.forms['Target'].action   = x
     document.forms['Target'].shop_id.value = y
	 document.forms['Target'].user_id.value = z
	 document.forms['Target'].submit();
}
 
// Drop-in content box- By Dynamic Drive
// For full source code and more DHTML scripts, visit http://www.dynamicdrive.com
// This credit MUST stay intact for use
/*
var ie=document.all
var dom=document.getElementById
var ns4=document.layers

var bouncelimit=40 //(must be divisible by 8)
var curtop
var direction="up"
var boxheight=''

function initbox(){
if (!dom&&!ie&&!ns4)
return
crossobj=(dom)?document.getElementById("dropin").style : ie? document.all.dropin : document.dropin
crossobj2=(dom)?document.getElementById("dropin2").style : ie? document.all.dropin2 : document.dropin2
crossobj3=(dom)?document.getElementById("dropin3").style : ie? document.all.dropin3 : document.dropin3

scroll_top=(ie)? document.body.scrollTop : window.pageYOffset
crossobj.top=scroll_top-250

crossobj.visibility=(dom||ie)? "visible" : "show"

dropstart=setInterval("dropin()",50)
}

function dropin(){
scroll_top=(ie)? document.body.scrollTop : window.pageYOffset
if (parseInt(crossobj.top)<100+scroll_top)
crossobj.top=parseInt(crossobj.top)+40
else{
clearInterval(dropstart)
bouncestart=setInterval("bouncein()",50)
}
}

function bouncein(){
crossobj.top=parseInt(crossobj.top)-bouncelimit
if (bouncelimit<0)
bouncelimit+=8
bouncelimit=bouncelimit*-1
if (bouncelimit==0){
clearInterval(bouncestart)
}
}

function dismissbox()
{
   if (window.bouncestart) clearInterval(bouncestart)
   crossobj.visibility="hidden"
   crossobj2.visibility="visible"
}

function dismissbox2()
{
   crossobj2.visibility="hidden"
   crossobj3.visibility="visible"
}

function dismissbox3()
{
   //crossobj2.visibility="visible"
   crossobj3.visibility="hidden"
}

function redo(){
bouncelimit=40
direction="up"
initbox()
}

window.onload=initbox
*/
//-->
