//<script>

var tdlink; var linkval;

$(document).ready(function() {

$('input.req').keyup(function() {
if ($(this).val() != "") {
$(this).css({ "border" : "1px solid black" }); 
} else {
$(this).css({ "border" : "1px solid blue" });
}
});

});

//$('').
