﻿
function disablepostonfirstclick(post, Com, Name, Email, REmail)
{
     
    var lnkpost, txtCom, txtName, txtEmail, REVEmail;
    lnkpost = document.getElementById(post);
    txtCom = document.getElementById(Com);
    txtName = document.getElementById(Name);
    txtEmail = document.getElementById(Email);
    REVEmail  = document.getElementById(REmail);
    
    if(txtName.value!='' && txtCom.value!='' && txtEmail.value!='' && REVEmail.isvalid==true)
    {
       lnkpost.style.visibility='hidden';
       lnkpost.disabled = true;
       
    }
}
function hide(obj)
{
    obj.style.visibility="hidden";
}
function show(obj)
{
    obj.style.visibility="visible";
}
function scrolltopostreply()
{
    var row2 = document.getElementById("rowPost");
	row2.scrollIntoView();
    row2.focus();
	
}
function scrolltopost()
{
    var row2 = document.getElementById("rowPost");
    row2.scrollIntoView();
    row2.focus();
    
}


