if(document.getElementById('box1').offsetHeight > 370 || document.getElementById('box2').offsetHeight > 370)
{
	$('#scrollbar').css({display:"block"});
}
else
{
	$('#scrollbar').css({display:"none"});
}



var obj1 = document.getElementById('contactForm');
 var html = '<form action="mail.php" class="contactForm" name="cform" method="post"><div class="login_bt_down"></div>';
   html = html + '<div class="input_boxes"><div class="inputboxmng"><div align="center" class="fpmng">Fill out this form and we will analyze your website for free. </div>';  
   html = html + '<p><label for="name"></label><span class="name-missing">Please enter your name</span><input id="name" name="name" type="text" value="Name" onfocus="if(this.value==\'Name\')this.value=\'\'" onblur="if(this.value==\'\')this.value=\'Name\'"/></p>';
   html = html + '<p><label for="e-mail"></label><span class="company-missing">Please enter your company name</span><input id="company" name="company" type="text" value="Company" onfocus="if(this.value==\'Company\')this.value=\'\'" onblur="if(this.value==\'\')this.value=\'Company\'"/></p>';
   html = html + '<p><label for="name"></label><span class="name-missing">Please enter your website name</span><input id="website" name="website" type="text" value="Website" onfocus="if(this.value==\'Website\')this.value=\'\'" onblur="if(this.value==\'\')this.value=\'Website\'"/></p>';   
   html = html + '<p><label for="e-mail"></label><span class="email-missing">Please enter a valid e-mail</span><input id="e-mail" name="email" type="text" value="eMail" onfocus="if(this.value==\'eMail\')this.value=\'\'" onblur="if(this.value==\'\')this.value=\'eMail\'"/></p>';
  html = html + '<p><label for="name"></label><span class="name-missing">Please enter your phone no</span><input id="phone" name="phone" type="text" value="Phone #" onfocus="if(this.value==\'Phone #\')this.value=\'\'" onblur="if(this.value==\'\')this.value=\'Phone #\'"/></p>';
  html = html + '<input class="submit" id="submit" type="submit" name="submit" value="Go" onfocus="this.blur()"  /></div></form>';
  
  obj1.innerHTML = html;