function ShowHideSendComment()
{
    var objSend = document.getElementById("divSendComment");
    if (objSend) objSend.style.display = objSend.style.display == "" ? "none" : "";    
    var objFriend = document.getElementById("divSendFriend");
    objFriend.style.display = "none"      
    var ifSendComment=document.getElementById("ifSendComment");
    var  hidComment =document.getElementById("hidComment");       
    if(ifSendComment!=null && hidComment!=null )
    {
    ifSendComment.style.height=290;
    ifSendComment.src=hidComment.value;
    }
    
}
function ShowHideSendFriend()
{
    var objFriend = document.getElementById("divSendFriend");
    if (objFriend) objFriend.style.display = objFriend.style.display == "" ? "none" : ""; 
    var objSend = document.getElementById("divSendComment");
     objSend.style.display = "none"     	
    var ifSendFriend=document.getElementById("ifSendFriend");   
    var hidSendFriend =document.getElementById("hidSendFriend");     
    if(ifSendFriend!=null && hidSendFriend!=null)
    {
    ifSendFriend.style.height=350;	
    ifSendFriend.src= hidSendFriend.value;
    }
    
}
