function test(){ alert("test");}
var formStep = 30; // step
var formTimeout = 3;//timeout
var formZero = 0;
 if('v'=='\v'){
 formZero=formStep+1;
 }

var curHeight = 0;
var formHeight = 360;
var myHeight = '';
var cTO,oTO;
	

function formOpen(height)
{
    clearTimeout(cTO);
	
	//ie condition
	if('v'=='\v'){
	document.getElementById("contact-form-new").style.display = "block";
	}
	
		
	if (formHeight>height)
	{
	  height += formStep;
	  myHeight = height + 'px';
	  document.getElementById("contact-form-new").style.height = myHeight;
	  oTO  = setTimeout("formOpen("+height+")",formTimeout);
	}
	else
	{
	 document.getElementById("close-form-but").style.display="block";
	 document.getElementById("open-form-but").style.display="none";
	}
	
	 
}

function formClose(height)
{
     clearTimeout(oTO);
	 
	 if (height>formZero)
     {
        height -= formStep ;	
         myHeight = height + 'px';
		
          document.getElementById("contact-form-new").style.height = myHeight;
        cTO  = setTimeout("formClose("+height+")",formTimeout);
     }
	 else
	 {
		 document.getElementById("close-form-but").style.display="none";
		 document.getElementById("open-form-but").style.display="block";
		 
		//ie condition
		if('v'=='\v'){
		document.getElementById("contact-form-new").style.display = "none";
		 document.getElementById("contact-form-new").style.height = "1px";
		}
		   
	 }
}
 