﻿//Animate Div

var pos=-180;
var dwn;
var dir='down';
var speed=100;
var count=0;

function dropDown() {
 
 document.getElementById('Mercdrop').style.top=pos+'px';
 if(dir=='down')
 {
 //alert(pos);
    if(pos>=400) {
        clearTimeout(down);
        //dir='up';
        pos=-180;
        return;
        }
    pos+=2;
}

else {
if(dir=='up') {
if(pos<=-110) {
clearTimeout(down);
dir='down';
return;
}
pos-=2;
}
}
down=setTimeout('dropDown()',speed);
}

//-->

function fix()
{
document.getElementById('Mercdrop').style.top=pos+'px';
setTimeout("dropDown()",4000);
}

setTimeout("fix()",10);

function closeDropDiv()
{
//pos=-180;
if (count < 1 )
{
count= count+1;
document.getElementById('Mercdrop').style.top='-180px';
clearTimeout(down);
pos=-180;
setTimeout("dropDown()",5000);
}
else
{
count= count+1;
document.getElementById('Mercdrop').style.top='-180px';
clearTimeout(down);
pos=-180;
}
}

function MercAnimMouseOver()
{
clearTimeout(down);
}

function MercAnimMouseOut()
{
if (pos != -180)
dropDown();
}


function dropDivWalkIn(ano)
{
clearTimeout(down);
document.getElementById('Mercdrop').style.top='-180px';
//setTimeout("dropDown()",15000);
MercWalkIn(ano)
//window.open('http://www.merc-connect.com/Merc_WV/TextChat/test.aspx?acc_no=' + ano + '&s_id=' + readCookie("MercantilerSessionId") + '','chatwindow','height=420,width=460,menubar=no,resize=no,status=yes');
}



