function writeComment()
{
    if (document.getElementById('comment').style.display == 'none')
        document.getElementById('comment').style.display = 'block';
    else                                                  
        document.getElementById('comment').style.display = 'none';
    return false;
}

document.write('<script type="text/javascript" src="/common_scripts.js"></script>');   
document.write('<script type="text/javascript" src="/client/js/cookies.js"></script>');   
document.write('<script type="text/javascript" src="/client/js/validator.js"></script>');    
document.write('<script type="text/javascript" src="/client/js/switch.js"></script>');
document.write('<script type="text/javascript" src="/client/js/reflection.js"></script>');
 
$(function() {

	$('#description').hide();
	$('#submit').bind('click', function(){
		$('#description').attr('value', '');
	});
});