﻿// JScript File

function ShowLink()
    {    
     var url = "http://www.propertydalal.com/blogs/forward-link.aspx";
     //alert('blog detail');
     //var url = "http://localhost:4331/Property/blogs/forward-link.aspx";
    //var rdbYes=document.getElementById("rdbYes");
    window.open(url,"partner","menubar = no, toolbars=no,width=500,scrollbars=no,height=600");
    }
    
    function VerifyCommentEntries()
    {
        var a ; 
        a = document.getElementById('txtComment');
        if(a.value.length == 0)
        {
            alert('Please write some comment about this blog.');
            a.focus();
            return false;
        }
        
        a = document.getElementById('txtName');
        if(a.value.length == 0)
        {
            alert('Please enter your name.');
            a.focus();
            return false;
        }
        
        a= document.getElementById('txtEmail');
        if(a.value.length == 0)
        {
            alert('Please enter your correct email id.');
            a.focus();
            return false;
        }
        return true;
    }


