﻿// JScript File

$(document).ready(function() {
    $('input.text').focus(function() {
        $(this).val('').unbind('focus');
    });
    $('#relatedLinks a').click(function() {
        window.open(this.href);
        return false;
    });
});
