function openGalleryPopup(url,height){var galleryWidth=790;var leftPos=0;if(screen.availWidth>galleryWidth){leftPos=Math.round((screen.availWidth-galleryWidth)/2)}var newWindow=window.open(url,"_blank","resizable=yes,scrollbars=yes,location=yes,toolbar=yes,status=yes,top=0,screenY=0,left="+leftPos+",screenX="+leftPos+",height="+height+",width="+galleryWidth);return false}

$(document).ready(function() {
    $("input[name='q']").toggleVal();
    $("#quick-subscribe-form").validate({
        onkeyup: false,
        errorPlacement: function(error, element) {
            error.prependTo( element.parent() );
        }
    });
    $("#poll-form").validate({
        onkeyup: false,
        rules: {
            // choice: "checked"
            choice: {required: true}
        }/*,
        messages: {
            choice: "You must select a choice"
        }*/
    });
});
